summaryrefslogtreecommitdiffstats
path: root/db
diff options
context:
space:
mode:
authorJean-Philippe Lang <jp_lang@yahoo.fr>2013-07-13 09:20:11 +0000
committerJean-Philippe Lang <jp_lang@yahoo.fr>2013-07-13 09:20:11 +0000
commit628d05629b734371d3e850a95dadf0be30c5ef20 (patch)
tree58a9da4e8266ee45a0800996f9228e9d2a45108c /db
parenta74d55edd99a4bae23e7d9cbd76136ffa7707ccf (diff)
downloadredmine-628d05629b734371d3e850a95dadf0be30c5ef20.tar.gz
redmine-628d05629b734371d3e850a95dadf0be30c5ef20.zip
Role-based issue custom field visibility (#5037).
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@12012 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'db')
-rw-r--r--db/migrate/20130713104233_create_custom_fields_roles.rb14
1 files changed, 14 insertions, 0 deletions
diff --git a/db/migrate/20130713104233_create_custom_fields_roles.rb b/db/migrate/20130713104233_create_custom_fields_roles.rb
new file mode 100644
index 000000000..458bfb50b
--- /dev/null
+++ b/db/migrate/20130713104233_create_custom_fields_roles.rb
@@ -0,0 +1,14 @@
+class CreateCustomFieldsRoles < ActiveRecord::Migration
+ 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.update_all({:visible => true}, {:type => 'IssueCustomField'})
+ end
+
+ def self.down
+ drop_table :custom_fields_roles
+ end
+end