mirror of
https://github.com/discourse/discourse.git
synced 2025-02-05 19:11:13 +00:00
3137e60653
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
193 B
Ruby
8 lines
193 B
Ruby
# frozen_string_literal: true
|
|
|
|
class AddDetailsToProblemCheckTrackers < ActiveRecord::Migration[7.0]
|
|
def change
|
|
add_column :problem_check_trackers, :details, :json, default: {}
|
|
end
|
|
end
|