mirror of
https://github.com/discourse/discourse.git
synced 2025-02-05 19:11:13 +00:00
This PR introduces a basic AdminNotice model to store these notices. Admin notices are categorized by their source/type (currently only notices from problem check.) They also have a priority.
8 lines
192 B
Ruby
8 lines
192 B
Ruby
# frozen_string_literal: true
|
|
|
|
class AddTargetToProblemCheckTrackers < ActiveRecord::Migration[7.0]
|
|
def change
|
|
add_column :problem_check_trackers, :target, :string, null: true
|
|
end
|
|
end
|