6656d41a41
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@2905 e93f8b46-1217-0410-a6f0-8f06a7374b81
10 lines
276 B
Ruby
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
|