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