Employers working - onboarding to card print
CI / scan_ruby (push) Failing after 10m41s
CI / lint (push) Failing after 7m31s
CI / test (push) Failing after 8m29s
Docker / build-and-test-image (push) Failing after 11m32s

This commit is contained in:
Jason Jordan
2026-01-15 11:37:50 -05:00
parent 0464ba8929
commit 4fac3b1036
108 changed files with 4113 additions and 431 deletions
@@ -0,0 +1,16 @@
class CreateMembers < ActiveRecord::Migration[7.2]
def change
create_table :members do |t|
t.string :name
t.string :id_card_display_name
t.string :family_id
t.integer :mb_member_key
t.integer :pb_entity_key
t.integer :pl_plan_key
t.belongs_to :employer, foreign_key: true
t.belongs_to :plan, null: true, foreign_key: true
t.timestamps
end
end
end