discourse/db/migrate/20130809160751_fix_seen_notification_ids.rb
Sam Saffron 30990006a9 DEV: enable frozen string literal on all files
This reduces chances of errors where consumers of strings mutate inputs
and reduces memory usage of the app.

Test suite passes now, but there may be some stuff left, so we will run
a few sites on a branch prior to merging
2019-05-13 09:31:32 +08:00

17 lines
547 B
Ruby

# frozen_string_literal: true
class FixSeenNotificationIds < ActiveRecord::Migration[4.2]
def up
# There was an error where `seen_notification_id` was being updated incorrectly.
# This tries to fix some of the bad data.
execute "UPDATE users SET
seen_notification_id = COALESCE((SELECT MAX(notifications.id)
FROM notifications
WHERE user_id = users.id AND created_at <= users.last_seen_at), 0)"
end
def down
end
end