bdbc7d967a
This reverts commit 96bef54154e669f9a3e92c3a4bc76c0be3a52e48.
23 lines
782 B
Ruby
23 lines
782 B
Ruby
class MigrateUsersNotificationLevel < ActiveRecord::Migration
|
|
# Migrates only users who changed their default notification level :participating
|
|
# creating a new record on notification settings table
|
|
|
|
DOWNTIME = false
|
|
|
|
def up
|
|
execute(%Q{
|
|
INSERT INTO notification_settings
|
|
(user_id, level, created_at, updated_at)
|
|
(SELECT id, notification_level, created_at, updated_at FROM users WHERE notification_level != 1)
|
|
})
|
|
end
|
|
|
|
# Migrates from notification settings back to user notification_level
|
|
# If no value is found the default level of 1 will be used
|
|
def down
|
|
execute(%Q{
|
|
UPDATE users u SET
|
|
notification_level = COALESCE((SELECT level FROM notification_settings WHERE user_id = u.id AND source_type IS NULL), 1)
|
|
})
|
|
end
|
|
end
|