blob: 736b2cf17cbe52d5fd0a723c314bd33bb8fb79a9 (
plain)
1
2
3
4
5
6
7
8
9
|
class AddCustomFieldsDescription < ActiveRecord::Migration[4.2]
def up
add_column :custom_fields, :description, :text
end
def down
remove_column :custom_fields, :description
end
end
|