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