File: 20151025072118_create_custom_field_enumerations.rb

package info (click to toggle)
redmine 6.0.6%2Bds-5
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 20,104 kB
  • sloc: ruby: 116,318; javascript: 12,885; sh: 460; perl: 303; python: 166; makefile: 30
file content (10 lines) | stat: -rw-r--r-- 350 bytes parent folder | download | duplicates (4)
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