Prod build process

This commit is contained in:
Jason Jordan
2026-05-06 13:28:16 -04:00
parent 1d9025276d
commit e0101be567
223 changed files with 1861 additions and 7105 deletions
@@ -5,6 +5,7 @@ class CreateIdCardRxSections < ActiveRecord::Migration[7.2]
t.string :help_desk
t.string :customer_service
t.string :web_url
t.boolean :default, default: false
t.timestamps
end
@@ -12,7 +12,6 @@ class CreateIdCardSetups < ActiveRecord::Migration[7.2]
t.boolean :active, default: false
t.boolean :initialized, default: false
t.belongs_to :employer, null: false, foreign_key: true
t.belongs_to :employer_logo, null: true, foreign_key: { to_table: :id_card_employer_logos }
t.belongs_to :network_logo, null: true, foreign_key: { to_table: :id_card_network_logos }
t.belongs_to :provider_section, null: true, foreign_key: { to_table: :id_card_provider_sections }
t.belongs_to :rx_section, null: true, foreign_key: { to_table: :id_card_rx_sections }
@@ -6,6 +6,7 @@ class CreateIdCardEmployerLogos < ActiveRecord::Migration[7.2]
t.string :content_type
t.float :aspect_ratio
t.boolean :active, default: false
t.belongs_to :setup, null: true, foreign_key: { to_table: :id_card_setups }
t.timestamps
end
@@ -83,6 +83,7 @@ class CreateIdCardPrintData < ActiveRecord::Migration[7.0]
t.string :employer_logo_filename
t.string :sample_plan_title
t.string :jasper_batch_id
t.belongs_to :employer, null: false, foreign_key: true
t.timestamps
end
@@ -0,0 +1,45 @@
# frozen_string_literal: true
class DeviseCreateUsers < ActiveRecord::Migration[7.2]
def change
create_table :users do |t|
## Database authenticatable
t.string :email, null: false, default: ""
t.string :encrypted_password, null: false, default: ""
t.integer :role, default: 0
## Recoverable
t.string :reset_password_token
t.datetime :reset_password_sent_at
## Rememberable
t.datetime :remember_created_at
## Trackable
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
## Confirmable
t.string :confirmation_token
t.datetime :confirmed_at
t.datetime :confirmation_sent_at
# t.string :unconfirmed_email # Only if using reconfirmable
## Lockable
t.integer :failed_attempts, default: 0, null: false # Only if lock strategy is :failed_attempts
t.string :unlock_token # Only if unlock strategy is :email or :both
t.datetime :locked_at
t.timestamps null: false
end
add_index :users, :email, unique: true
add_index :users, :reset_password_token, unique: true
# add_index :users, :confirmation_token, unique: true
# add_index :users, :unlock_token, unique: true
end
end
@@ -0,0 +1,6 @@
class FixResetPasswordTokenIndex < ActiveRecord::Migration[7.2]
def change
remove_index :users, :reset_password_token
add_index :users, :reset_password_token, unique: true, where: "reset_password_token IS NOT NULL"
end
end
@@ -0,0 +1,22 @@
class CreateDelayedJobs < ActiveRecord::Migration[7.2]
def self.up
create_table :delayed_jobs do |table|
table.integer :priority, default: 0, null: false # Allows some jobs to jump to the front of the queue
table.integer :attempts, default: 0, null: false # Provides for retries, but still fail eventually.
table.text :handler, null: false # YAML-encoded string of the object that will do work
table.text :last_error # reason for last failure (See Note below)
table.datetime :run_at # When to run. Could be Time.zone.now for immediately, or sometime in the future.
table.datetime :locked_at # Set when a client is working on this object
table.datetime :failed_at # Set when all retries have failed (actually, by default, the record is deleted instead)
table.string :locked_by # Who is working on this object (if locked)
table.string :queue # The name of the queue this job is in
table.timestamps null: true
end
add_index :delayed_jobs, [:priority, :run_at], name: "delayed_jobs_priority"
end
def self.down
drop_table :delayed_jobs
end
end
+47 -4
View File
@@ -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"
+2 -1
View File
@@ -16,7 +16,8 @@
"seed_tasks:determine_employer_fields",
"seed_tasks:build_plans",
"seed_tasks:build_members"
"seed_tasks:build_members",
"seed_users:create_beta"
]
seed_tasks.each do |task_name|