mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2025-01-08 00:23:01 +08:00
15 lines
486 B
Ruby
15 lines
486 B
Ruby
|
class AddEmailNotificationSettingsToUser < ActiveRecord::Migration
|
||
|
def up
|
||
|
add_column :users, :assignments_notification_email, :boolean, default: false
|
||
|
add_column :users, :recent_notification_email, :boolean, default: false
|
||
|
|
||
|
User.update_all(assignments_notification_email: false,
|
||
|
recent_notification_email: false)
|
||
|
end
|
||
|
|
||
|
def down
|
||
|
remove_column :users, :assignments_notification_email
|
||
|
remove_column :users, :recent_notification_email
|
||
|
end
|
||
|
end
|