mirror of
https://github.com/meineerde/redmine.git
synced 2025-10-17 17:01:01 +00:00
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
|