Files
Redmine/db/migrate/20130713104233_create_custom_fields_roles.rb
Go MAEDA 5861160ffc Add "frozen_string_literal: false" for all files (#26561).
This will be changed to true in the future.


git-svn-id: http://svn.redmine.org/redmine/trunk@17947 e93f8b46-1217-0410-a6f0-8f06a7374b81
2019-03-15 01:32:57 +00:00

17 lines
552 B
Ruby

# frozen_string_literal: false
class CreateCustomFieldsRoles < ActiveRecord::Migration[4.2]
def self.up
create_table :custom_fields_roles, :id => false do |t|
t.column :custom_field_id, :integer, :null => false
t.column :role_id, :integer, :null => false
end
add_index :custom_fields_roles, [:custom_field_id, :role_id], :unique => true, :name => :custom_fields_roles_ids
CustomField.where({:type => 'IssueCustomField'}).update_all({:visible => true})
end
def self.down
drop_table :custom_fields_roles
end
end