6 lines
162 B
6 lines
162 B
6 years ago
|
class ChangeDigestToStringInAttachments < ActiveRecord::Migration[5.2]
|
||
|
def change
|
||
|
change_column :attachments, :digest, :string, :limit => 60
|
||
|
end
|
||
|
end
|