diff --git a/db/migrate/20210701233509_delete_old_reminder_topic_timers.rb b/db/migrate/20210701233509_delete_old_reminder_topic_timers.rb new file mode 100644 index 0000000000..5624695800 --- /dev/null +++ b/db/migrate/20210701233509_delete_old_reminder_topic_timers.rb @@ -0,0 +1,14 @@ +# 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