mirror of
https://github.com/discourse/discourse.git
synced 2025-02-25 18:55:32 -06:00
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
This commit is contained in:
@@ -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
|
||||
Reference in New Issue
Block a user