beta build

This commit is contained in:
Jason Jordan
2026-06-17 23:23:36 -04:00
parent 5f04811c16
commit 5a90ea6e14
48 changed files with 674 additions and 54 deletions
@@ -0,0 +1,9 @@
class CreateCarriers < ActiveRecord::Migration[7.2]
def change
create_table :carriers do |t|
t.string :name
t.timestamps
end
end
end
@@ -0,0 +1,10 @@
class CreateBrokers < ActiveRecord::Migration[7.2]
def change
create_table :brokers do |t|
t.string :name
t.belongs_to :carrier, null: true, foreign_key: true
t.timestamps
end
end
end
@@ -0,0 +1,5 @@
class UpdateEmployerToBelongToBroker < ActiveRecord::Migration[7.2]
def change
add_reference :employers, :broker, null: true, foreign_key: true
end
end
@@ -0,0 +1,9 @@
class CreateProviderGroups < ActiveRecord::Migration[7.2]
def change
create_table :provider_groups do |t|
t.string :name
t.timestamps
end
end
end
@@ -0,0 +1,13 @@
class CreateProviders < ActiveRecord::Migration[7.2]
def change
create_table :providers do |t|
t.string :name
t.integer :pb_entity_key
t.string :tax_id
t.string :family_id
t.belongs_to :provider_group, null: true, foreign_key: true
t.timestamps
end
end
end