Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.
# 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