##// END OF EJS Templates
Rails4: replace deprecated Relation#update_all at CreateCustomFieldsRoles db migration...
Toshi MARUYAMA -
r12210:73b27124f1d5
parent child
Show More
@@ -1,14 +1,14
1 1 class CreateCustomFieldsRoles < ActiveRecord::Migration
2 2 def self.up
3 3 create_table :custom_fields_roles, :id => false do |t|
4 4 t.column :custom_field_id, :integer, :null => false
5 5 t.column :role_id, :integer, :null => false
6 6 end
7 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 9 end
10 10
11 11 def self.down
12 12 drop_table :custom_fields_roles
13 13 end
14 14 end
General Comments 0
You need to be logged in to leave comments. Login now