automate employer setup import from word and manual entry working

This commit is contained in:
Jason Jordan
2025-12-03 11:42:15 -05:00
parent 3fbece7da6
commit 78ce415b94
44 changed files with 1012 additions and 339 deletions
+33 -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: 2025_11_04_171752) do
ActiveRecord::Schema[7.2].define(version: 2025_12_02_142512) do
create_table "action_text_rich_texts", force: :cascade do |t|
t.string "name", null: false
t.text "body"
@@ -49,6 +49,18 @@ ActiveRecord::Schema[7.2].define(version: 2025_11_04_171752) do
t.index ["blob_id", "variation_digest"], name: "index_active_storage_variant_records_uniqueness", unique: true
end
create_table "employer_setup_processes", force: :cascade do |t|
t.string "employer_name"
t.string "group_number"
t.string "effect_date"
t.string "logo_filename"
t.string "form_method"
t.string "status"
t.string "current_step"
t.datetime "created_at", null: false
t.datetime "updated_at", null: false
end
create_table "id_card_benefits", force: :cascade do |t|
t.string "benefit_desc"
t.string "benefit"
@@ -65,7 +77,27 @@ ActiveRecord::Schema[7.2].define(version: 2025_11_04_171752) do
t.datetime "updated_at", null: false
end
create_table "plan_benefits", force: :cascade do |t|
t.string "benefit_desc"
t.string "benefit"
t.integer "sequence"
t.bigint "plan_id", null: false
t.datetime "created_at", null: false
t.datetime "updated_at", null: false
t.index ["plan_id"], name: "index_plan_benefits_on_plan_id"
end
create_table "plans", force: :cascade do |t|
t.string "title"
t.bigint "employer_setup_process_id", null: false
t.datetime "created_at", null: false
t.datetime "updated_at", null: false
t.index ["employer_setup_process_id"], name: "index_plans_on_employer_setup_process_id"
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 "id_card_benefits", "id_card_benefits_templates"
add_foreign_key "plan_benefits", "plans"
add_foreign_key "plans", "employer_setup_processes"
end