annotate .svn/pristine/90/9088a85b8457384cf8f560ff91bded96e2e03893.svn-base @ 1561:6074fffd8a1d
feature_1136
No, a bare repo is better
author |
Chris Cannam |
date |
Thu, 14 Jan 2016 12:03:06 +0000 |
parents |
261b3d9a4903 |
children |
|
rev |
line source |
Chris@1464
|
1 class CreateCustomFieldsRoles < ActiveRecord::Migration
|
Chris@1464
|
2 def self.up
|
Chris@1464
|
3 create_table :custom_fields_roles, :id => false do |t|
|
Chris@1464
|
4 t.column :custom_field_id, :integer, :null => false
|
Chris@1464
|
5 t.column :role_id, :integer, :null => false
|
Chris@1464
|
6 end
|
Chris@1464
|
7 add_index :custom_fields_roles, [:custom_field_id, :role_id], :unique => true, :name => :custom_fields_roles_ids
|
Chris@1464
|
8 CustomField.update_all({:visible => true}, {:type => 'IssueCustomField'})
|
Chris@1464
|
9 end
|
Chris@1464
|
10
|
Chris@1464
|
11 def self.down
|
Chris@1464
|
12 drop_table :custom_fields_roles
|
Chris@1464
|
13 end
|
Chris@1464
|
14 end
|