discourse/db/migrate/20240311015942_create_admin_notices.rb

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

15 lines
368 B
Ruby
Raw Normal View History

# frozen_string_literal: true
class CreateAdminNotices < ActiveRecord::Migration[7.0]
def change
create_table :admin_notices do |t|
t.integer :subject, null: false, index: true
t.integer :priority, null: false
t.string :identifier, null: false, index: true
t.json :details, null: false, default: {}
t.timestamps
end
end
end