discourse/db/migrate/20210701233509_delete_old_reminder_topic_timers.rb
Martin Brennan 58941ea2be
FIX: Delete old reminder topic timers (#13611)
Following up from 5268568d23
these status type 5 topic timers are the reminder type which
have long been migrated to bookmark reminders
2021-07-02 13:12:20 +10:00

15 lines
428 B
Ruby

# frozen_string_literal: true
class DeleteOldReminderTopicTimers < ActiveRecord::Migration[6.1]
def up
# following up from MigrateUserTopicTimersToBookmarkReminders,
# these status type 5 topic timers are the reminder type which
# have long been migrated to bookmark reminders
DB.exec("DELETE FROM topic_timers WHERE status_type = 5")
end
def down
raise ActiveRecord::IrreversibleMigration
end
end