Fixes User/CustomValue association broken by r2869 (#3978).

git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@2905 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
Jean-Philippe Lang
2009-10-10 10:16:00 +00:00
parent bcbf08017a
commit 6656d41a41
3 changed files with 19 additions and 4 deletions

View File

@@ -0,0 +1,9 @@
class FixUsersCustomValues < ActiveRecord::Migration
def self.up
CustomValue.update_all("customized_type = 'Principal'", "customized_type = 'User'")
end
def self.down
CustomValue.update_all("customized_type = 'User'", "customized_type = 'Principal'")
end
end