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-8f06a7374b81pull/351/head
parent
3a3263102a
commit
0316af7f6b
@ -0,0 +1,9 @@ |
||||
class ChangeUsersMailNotificationToString < ActiveRecord::Migration |
||||
def self.up |
||||
change_column :users, :mail_notification, :string, :default => '', :null => false |
||||
end |
||||
|
||||
def self.down |
||||
change_column :users, :mail_notification, :boolean, :default => true, :null => false |
||||
end |
||||
end |
@ -0,0 +1,11 @@ |
||||
# 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 |
Loading…
Reference in new issue