mirror of
https://github.com/discourse/discourse.git
synced 2024-11-25 09:42:07 +08:00
15 lines
263 B
Ruby
15 lines
263 B
Ruby
# frozen_string_literal: true
|
|
class ClearDuplicateAdminNotices < ActiveRecord::Migration[7.1]
|
|
def up
|
|
problem_subject_id = 0
|
|
|
|
DB.exec(<<~SQL)
|
|
DELETE FROM admin_notices
|
|
WHERE subject = #{problem_subject_id}
|
|
SQL
|
|
end
|
|
|
|
def down
|
|
end
|
|
end
|