##// END OF EJS Templates
tagged version 3.3.1...
tagged version 3.3.1 git-svn-id: http://svn.redmine.org/redmine/tags/3.3.1@15904 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r14363:2f51dc11cfdf
r15522:93cd8829a79f 3.3.1
Show More
20151025072118_create_custom_field_enumerations.rb
10 lines | 345 B | text/x-ruby | RubyLexer
/ db / migrate / 20151025072118_create_custom_field_enumerations.rb
Jean-Philippe Lang
Adds Enumeration custom field format (#21060)....
r14363 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