0316af7f6b
The string will now store which type of notification option to use. git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@4216 e93f8b46-1217-0410-a6f0-8f06a7374b81
12 lines
323 B
Ruby
12 lines
323 B
Ruby
# Patch the data from a boolean change.
|
|
class UpdateMailNotificationValues < ActiveRecord::Migration
|
|
def self.up
|
|
User.update_all("mail_notification = 'all'", "mail_notification = '1'")
|
|
User.update_all("mail_notification = 'only_my_events'", "mail_notification = '0'")
|
|
end
|
|
|
|
def self.down
|
|
# No-op
|
|
end
|
|
end
|