Files
baclight/db/migrate/20251205091559_create_network_logos.rb
Jason Jordan 4fac3b1036
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
Employers working - onboarding to card print
2026-01-15 11:37:50 -05:00

13 lines
318 B
Ruby

class CreateNetworkLogos < ActiveRecord::Migration[7.0]
def change
create_table :alternate_network_logos do |t|
t.string :network_logo_filename
t.string :exception_type
t.string :exception_value
t.belongs_to :employer, null: false, foreign_key: true
t.timestamps
end
end
end