Files
baclight/db/migrate/20260107180344_create_employer_card_logos.rb
T

12 lines
311 B
Ruby
Raw Normal View History

class CreateEmployerCardLogos < ActiveRecord::Migration[7.2]
def change
create_table :employer_card_logos do |t|
t.references :employer, null: false, foreign_key: true
t.references :card_logo_file, null: false, foreign_key: true
t.string :logo_type
t.timestamps
end
end
end