Prod build process
This commit is contained in:
+47
-4
@@ -10,7 +10,22 @@
|
||||
#
|
||||
# It's strongly recommended that you check this file into your version control system.
|
||||
|
||||
ActiveRecord::Schema[7.2].define(version: 2026_04_08_210447) do
|
||||
ActiveRecord::Schema[7.2].define(version: 2026_04_30_184912) do
|
||||
create_table "delayed_jobs", force: :cascade do |t|
|
||||
t.integer "priority", default: 0, null: false
|
||||
t.integer "attempts", default: 0, null: false
|
||||
t.text "handler", null: false
|
||||
t.text "last_error"
|
||||
t.datetime "run_at"
|
||||
t.datetime "locked_at"
|
||||
t.datetime "failed_at"
|
||||
t.string "locked_by"
|
||||
t.string "queue"
|
||||
t.datetime "created_at"
|
||||
t.datetime "updated_at"
|
||||
t.index ["priority", "run_at"], name: "delayed_jobs_priority"
|
||||
end
|
||||
|
||||
create_table "employers", force: :cascade do |t|
|
||||
t.string "name"
|
||||
t.string "slug"
|
||||
@@ -31,8 +46,10 @@ ActiveRecord::Schema[7.2].define(version: 2026_04_08_210447) do
|
||||
t.string "content_type"
|
||||
t.float "aspect_ratio"
|
||||
t.boolean "active", default: false
|
||||
t.bigint "setup_id"
|
||||
t.datetime "created_at", null: false
|
||||
t.datetime "updated_at", null: false
|
||||
t.index ["setup_id"], name: "index_id_card_employer_logos_on_setup_id"
|
||||
end
|
||||
|
||||
create_table "id_card_field_exception_items", force: :cascade do |t|
|
||||
@@ -172,8 +189,10 @@ ActiveRecord::Schema[7.2].define(version: 2026_04_08_210447) do
|
||||
t.string "employer_logo_filename"
|
||||
t.string "sample_plan_title"
|
||||
t.string "jasper_batch_id"
|
||||
t.bigint "employer_id", null: false
|
||||
t.datetime "created_at", null: false
|
||||
t.datetime "updated_at", null: false
|
||||
t.index ["employer_id"], name: "index_id_card_print_data_on_employer_id"
|
||||
end
|
||||
|
||||
create_table "id_card_provider_sections", force: :cascade do |t|
|
||||
@@ -229,6 +248,7 @@ ActiveRecord::Schema[7.2].define(version: 2026_04_08_210447) do
|
||||
t.string "help_desk"
|
||||
t.string "customer_service"
|
||||
t.string "web_url"
|
||||
t.boolean "default", default: false
|
||||
t.datetime "created_at", null: false
|
||||
t.datetime "updated_at", null: false
|
||||
end
|
||||
@@ -245,14 +265,12 @@ ActiveRecord::Schema[7.2].define(version: 2026_04_08_210447) do
|
||||
t.boolean "active", default: false
|
||||
t.boolean "initialized", default: false
|
||||
t.bigint "employer_id", null: false
|
||||
t.bigint "employer_logo_id"
|
||||
t.bigint "network_logo_id"
|
||||
t.bigint "provider_section_id"
|
||||
t.bigint "rx_section_id"
|
||||
t.datetime "created_at", null: false
|
||||
t.datetime "updated_at", null: false
|
||||
t.index ["employer_id"], name: "index_id_card_setups_on_employer_id"
|
||||
t.index ["employer_logo_id"], name: "index_id_card_setups_on_employer_logo_id"
|
||||
t.index ["network_logo_id"], name: "index_id_card_setups_on_network_logo_id"
|
||||
t.index ["provider_section_id"], name: "index_id_card_setups_on_provider_section_id"
|
||||
t.index ["rx_section_id"], name: "index_id_card_setups_on_rx_section_id"
|
||||
@@ -508,14 +526,39 @@ ActiveRecord::Schema[7.2].define(version: 2026_04_08_210447) do
|
||||
t.index ["key"], name: "index_solid_queue_semaphores_on_key", unique: true
|
||||
end
|
||||
|
||||
create_table "users", force: :cascade do |t|
|
||||
t.string "email", default: "", null: false
|
||||
t.string "encrypted_password", default: "", null: false
|
||||
t.integer "role", default: 0
|
||||
t.string "reset_password_token"
|
||||
t.datetime "reset_password_sent_at"
|
||||
t.datetime "remember_created_at"
|
||||
t.integer "sign_in_count", default: 0, null: false
|
||||
t.datetime "current_sign_in_at"
|
||||
t.datetime "last_sign_in_at"
|
||||
t.string "current_sign_in_ip"
|
||||
t.string "last_sign_in_ip"
|
||||
t.string "confirmation_token"
|
||||
t.datetime "confirmed_at"
|
||||
t.datetime "confirmation_sent_at"
|
||||
t.integer "failed_attempts", default: 0, null: false
|
||||
t.string "unlock_token"
|
||||
t.datetime "locked_at"
|
||||
t.datetime "created_at", null: false
|
||||
t.datetime "updated_at", null: false
|
||||
t.index ["email"], name: "index_users_on_email", unique: true
|
||||
t.index ["reset_password_token"], name: "index_users_on_reset_password_token", unique: true, where: "([reset_password_token] IS NOT NULL)"
|
||||
end
|
||||
|
||||
add_foreign_key "id_card_employer_logos", "id_card_setups", column: "setup_id"
|
||||
add_foreign_key "id_card_field_exception_items", "id_card_field_exceptions", column: "field_exception_id"
|
||||
add_foreign_key "id_card_field_exception_items", "id_card_network_logos", column: "network_logo_id"
|
||||
add_foreign_key "id_card_field_exception_items", "id_card_provider_sections", column: "provider_section_id"
|
||||
add_foreign_key "id_card_field_exceptions", "id_card_setups", column: "setup_id"
|
||||
add_foreign_key "id_card_plan_benefits", "id_card_plans", column: "plan_id"
|
||||
add_foreign_key "id_card_plans", "id_card_setups", column: "setup_id"
|
||||
add_foreign_key "id_card_print_data", "employers"
|
||||
add_foreign_key "id_card_setups", "employers"
|
||||
add_foreign_key "id_card_setups", "id_card_employer_logos", column: "employer_logo_id"
|
||||
add_foreign_key "id_card_setups", "id_card_network_logos", column: "network_logo_id"
|
||||
add_foreign_key "id_card_setups", "id_card_provider_sections", column: "provider_section_id"
|
||||
add_foreign_key "id_card_setups", "id_card_rx_sections", column: "rx_section_id"
|
||||
|
||||
Reference in New Issue
Block a user