attachment history中description字段类型修改

This commit is contained in:
huang 2016-10-15 09:38:48 +08:00
parent f1e4628e75
commit f2f9792203
1 changed files with 9 additions and 0 deletions

View File

@ -0,0 +1,9 @@
class ChangeDescriptionForAttachmentHistory < ActiveRecord::Migration
def up
change_column :attachment_histories, :description, :text
end
def down
change_column :attachment_histories, :description, :string
end
end