2025-12-10 13:22:33 -05:00
|
|
|
class CreateNetworkLogos < ActiveRecord::Migration[7.0]
|
|
|
|
|
def change
|
|
|
|
|
create_table :alternate_network_logos do |t|
|
2026-01-15 11:37:50 -05:00
|
|
|
t.string :network_logo_filename
|
2025-12-10 13:22:33 -05:00
|
|
|
t.string :exception_type
|
|
|
|
|
t.string :exception_value
|
2026-01-15 11:37:50 -05:00
|
|
|
t.belongs_to :employer, null: false, foreign_key: true
|
2025-12-10 13:22:33 -05:00
|
|
|
|
|
|
|
|
t.timestamps
|
|
|
|
|
end
|
|
|
|
|
end
|
|
|
|
|
end
|