Employer form mostly working with persist to db

This commit is contained in:
Jason Jordan
2025-12-10 13:22:33 -05:00
parent 78ce415b94
commit 0464ba8929
68 changed files with 3071 additions and 365 deletions
@@ -0,0 +1,12 @@
class CreateNetworkLogos < ActiveRecord::Migration[7.0]
def change
create_table :alternate_network_logos do |t|
t.string :network_logo
t.string :exception_type
t.string :exception_value
t.belongs_to :employer_setup_process, null: false, foreign_key: true
t.timestamps
end
end
end