stable, before a refactor

This commit is contained in:
Jason Jordan
2026-03-03 22:53:21 -05:00
parent 4fac3b1036
commit 942d60c3e0
66 changed files with 1321 additions and 194 deletions
+27 -1
View File
@@ -10,7 +10,7 @@
#
# It's strongly recommended that you check this file into your version control system.
ActiveRecord::Schema[7.2].define(version: 2026_01_14_183848) do
ActiveRecord::Schema[7.2].define(version: 2026_02_27_213305) do
create_table "action_text_rich_texts", force: :cascade do |t|
t.string "name", null: false
t.text "body"
@@ -59,6 +59,26 @@ ActiveRecord::Schema[7.2].define(version: 2026_01_14_183848) do
t.index ["employer_id"], name: "index_alternate_network_logos_on_employer_id"
end
create_table "card_exception_items", force: :cascade do |t|
t.string "field_name"
t.string "field_value"
t.bigint "card_logo_file_id"
t.bigint "card_provider_id"
t.datetime "created_at", null: false
t.datetime "updated_at", null: false
t.index ["card_logo_file_id"], name: "index_card_exception_items_on_card_logo_file_id"
t.index ["card_provider_id"], name: "index_card_exception_items_on_card_provider_id"
end
create_table "card_exceptions", force: :cascade do |t|
t.string "type"
t.string "value"
t.bigint "employer_id", null: false
t.datetime "created_at", null: false
t.datetime "updated_at", null: false
t.index ["employer_id"], name: "index_card_exceptions_on_employer_id"
end
create_table "card_logo_files", force: :cascade do |t|
t.string "filename"
t.binary "image_data"
@@ -67,6 +87,7 @@ ActiveRecord::Schema[7.2].define(version: 2026_01_14_183848) do
t.boolean "active", default: false
t.datetime "created_at", null: false
t.datetime "updated_at", null: false
t.float "aspect_ratio"
end
create_table "card_providers", force: :cascade do |t|
@@ -113,6 +134,7 @@ ActiveRecord::Schema[7.2].define(version: 2026_01_14_183848) do
t.string "precert_6"
t.datetime "created_at", null: false
t.datetime "updated_at", null: false
t.string "title"
end
create_table "card_rxes", force: :cascade do |t|
@@ -281,11 +303,15 @@ ActiveRecord::Schema[7.2].define(version: 2026_01_14_183848) do
t.string "benefit_14"
t.datetime "created_at", null: false
t.datetime "updated_at", null: false
t.string "name"
end
add_foreign_key "active_storage_attachments", "active_storage_blobs", column: "blob_id"
add_foreign_key "active_storage_variant_records", "active_storage_blobs", column: "blob_id"
add_foreign_key "alternate_network_logos", "employers"
add_foreign_key "card_exception_items", "card_logo_files"
add_foreign_key "card_exception_items", "card_providers"
add_foreign_key "card_exceptions", "employers"
add_foreign_key "employer_card_logos", "card_logo_files"
add_foreign_key "employer_card_logos", "employers"
add_foreign_key "employers", "card_providers"