0bc3ef5014
git-svn-id: http://svn.redmine.org/redmine/trunk@12488 e93f8b46-1217-0410-a6f0-8f06a7374b81
12 lines
302 B
Ruby
12 lines
302 B
Ruby
class FixUsersCustomValues < ActiveRecord::Migration
|
|
def self.up
|
|
CustomValue.where("customized_type = 'User'").
|
|
update_all("customized_type = 'Principal'")
|
|
end
|
|
|
|
def self.down
|
|
CustomValue.where("customized_type = 'Principal'").
|
|
update_all("customized_type = 'User'")
|
|
end
|
|
end
|