summaryrefslogtreecommitdiffstats
path: root/db/migrate
diff options
context:
space:
mode:
authorJean-Philippe Lang <jp_lang@yahoo.fr>2009-01-17 11:18:04 +0000
committerJean-Philippe Lang <jp_lang@yahoo.fr>2009-01-17 11:18:04 +0000
commit12792d8068d0ed0514e89267edefaab4df5cf2c3 (patch)
tree64aac7c729949cee91a3fb05070487870dbbccfc /db/migrate
parent99c2e989751a84b36d47de8cbe82572a61c4aa23 (diff)
downloadredmine-12792d8068d0ed0514e89267edefaab4df5cf2c3.tar.gz
redmine-12792d8068d0ed0514e89267edefaab4df5cf2c3.zip
User custom fields can now be set as editable so that users can edit them on 'My account'.
For existing user custom fields, this new attribute is set to false by default to preserve the prior behaviour (it can turned on by editing the custom field in admin area). Note: on the registration form, *required* custom fields will be displayed even if they are not defined as editable so that the account can be created. git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@2276 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'db/migrate')
-rw-r--r--db/migrate/102_add_custom_fields_editable.rb9
-rw-r--r--db/migrate/103_set_custom_fields_editable.rb9
2 files changed, 18 insertions, 0 deletions
diff --git a/db/migrate/102_add_custom_fields_editable.rb b/db/migrate/102_add_custom_fields_editable.rb
new file mode 100644
index 000000000..949f9db9d
--- /dev/null
+++ b/db/migrate/102_add_custom_fields_editable.rb
@@ -0,0 +1,9 @@
+class AddCustomFieldsEditable < ActiveRecord::Migration
+ def self.up
+ add_column :custom_fields, :editable, :boolean, :default => true
+ end
+
+ def self.down
+ remove_column :custom_fields, :editable
+ end
+end
diff --git a/db/migrate/103_set_custom_fields_editable.rb b/db/migrate/103_set_custom_fields_editable.rb
new file mode 100644
index 000000000..465c929ec
--- /dev/null
+++ b/db/migrate/103_set_custom_fields_editable.rb
@@ -0,0 +1,9 @@
+class SetCustomFieldsEditable < ActiveRecord::Migration
+ def self.up
+ UserCustomField.update_all('editable = false')
+ end
+
+ def self.down
+ UserCustomField.update_all('editable = true')
+ end
+end