blob: 608fa6259e0ed93bda7e3f425d5fa22885d92ffc (
plain)
1
2
3
4
5
6
7
8
9
|
class AddCustomFieldsMultiple < ActiveRecord::Migration[4.2]
def self.up
add_column :custom_fields, :multiple, :boolean, :default => false
end
def self.down
remove_column :custom_fields, :multiple
end
end
|