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