12 lines
311 B
Ruby
12 lines
311 B
Ruby
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
|