Mercurial > hg > soundsoftware-site
comparison db/migrate/20130713104233_create_custom_fields_roles.rb @ 1517:dffacf8a6908 redmine-2.5
Update to Redmine SVN revision 13367 on 2.5-stable branch
author | Chris Cannam |
---|---|
date | Tue, 09 Sep 2014 09:29:00 +0100 |
parents | 261b3d9a4903 |
children |
comparison
equal
deleted
inserted
replaced
1516:b450a9d58aed | 1517:dffacf8a6908 |
---|---|
3 create_table :custom_fields_roles, :id => false do |t| | 3 create_table :custom_fields_roles, :id => false do |t| |
4 t.column :custom_field_id, :integer, :null => false | 4 t.column :custom_field_id, :integer, :null => false |
5 t.column :role_id, :integer, :null => false | 5 t.column :role_id, :integer, :null => false |
6 end | 6 end |
7 add_index :custom_fields_roles, [:custom_field_id, :role_id], :unique => true, :name => :custom_fields_roles_ids | 7 add_index :custom_fields_roles, [:custom_field_id, :role_id], :unique => true, :name => :custom_fields_roles_ids |
8 CustomField.update_all({:visible => true}, {:type => 'IssueCustomField'}) | 8 CustomField.where({:type => 'IssueCustomField'}).update_all({:visible => true}) |
9 end | 9 end |
10 | 10 |
11 def self.down | 11 def self.down |
12 drop_table :custom_fields_roles | 12 drop_table :custom_fields_roles |
13 end | 13 end |