mirror of
https://github.com/redmine/redmine.git
synced 2025-11-07 13:55:52 +01:00
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
|