comparison db/migrate/20130713104233_create_custom_fields_roles.rb @ 1526:404aa68d4227

Merge from live branch
author Chris Cannam
date Thu, 11 Sep 2014 12:46:20 +0100
parents dffacf8a6908
children
comparison
equal deleted inserted replaced
1493:a5f2bdf3b486 1526:404aa68d4227
1 class CreateCustomFieldsRoles < ActiveRecord::Migration
2 def self.up
3 create_table :custom_fields_roles, :id => false do |t|
4 t.column :custom_field_id, :integer, :null => false
5 t.column :role_id, :integer, :null => false
6 end
7 add_index :custom_fields_roles, [:custom_field_id, :role_id], :unique => true, :name => :custom_fields_roles_ids
8 CustomField.where({:type => 'IssueCustomField'}).update_all({:visible => true})
9 end
10
11 def self.down
12 drop_table :custom_fields_roles
13 end
14 end