redmine/db/migrate/20091010093521_fix_users_custom_values.rb
Jean-Philippe Lang 6656d41a41 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
2009-10-10 10:16:00 +00:00

10 lines
276 B
Ruby

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