blob: c1b2eaec49b77125eead49a1834502f3ece5755a (
plain)
1
2
3
4
5
6
7
8
9
10
|
class CreateCustomFieldEnumerations < ActiveRecord::Migration[4.2]
def change
create_table :custom_field_enumerations do |t|
t.integer :custom_field_id, :null => false
t.string :name, :null => false
t.boolean :active, :default => true, :null => false
t.integer :position, :default => 1, :null => false
end
end
end
|