diff --git a/db/schema.rb b/db/schema.rb index d3bb277e57..cbbbf34449 100644 --- a/db/schema.rb +++ b/db/schema.rb @@ -10,7 +10,7 @@ # # It's strongly recommended that you check this file into your version control system. -ActiveRecord::Schema[7.1].define(version: 2024_10_21_182334) do +ActiveRecord::Schema[7.1].define(version: 2024_10_23_222045) do # These are extensions that must be enabled in order to support this database enable_extension "btree_gin" enable_extension "fuzzystrmatch" @@ -296,6 +296,23 @@ t.datetime "updated_at", null: false end + create_table "banners", force: :cascade do |t| + t.integer "entity_id", null: false + t.string "entity_bundle" + t.string "headline" + t.string "alert_type" + t.boolean "show_close" + t.text "content" + t.jsonb "context" + t.boolean "operating_status_cta" + t.boolean "email_updates_button" + t.boolean "find_facilities_cta" + t.boolean "limit_subpage_inheritance" + t.datetime "created_at", null: false + t.datetime "updated_at", null: false + t.index ["entity_id"], name: "index_banners_on_entity_id" + end + create_table "base_facilities", id: false, force: :cascade do |t| t.string "unique_id", null: false t.string "name", null: false