summaryrefslogtreecommitdiffstats
path: root/db/migrate/20151025072118_create_custom_field_enumerations.rb
blob: ea2e5103f95effcd981ef052f0dfc5de325b0ca6 (plain)
1
2
3
4
5
6
7
8
9
10
class CreateCustomFieldEnumerations < ActiveRecord::Migration
  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