mirror of
https://github.com/redmine/redmine.git
synced 2025-11-04 20:35:57 +01:00
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:
9
db/migrate/20091010093521_fix_users_custom_values.rb
Normal file
9
db/migrate/20091010093521_fix_users_custom_values.rb
Normal 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
|
||||
Reference in New Issue
Block a user