Files
baclight/db/migrate/20251205091559_create_network_logos.rb
T

13 lines
323 B
Ruby
Raw Normal View History

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