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