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
10 lines
290 B
Ruby
10 lines
290 B
Ruby
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
|