notebook/db/migrate/20200128234553_create_continent_landmarks.rb
2020-01-28 18:06:00 -06:00

11 lines
281 B
Ruby

class CreateContinentLandmarks < ActiveRecord::Migration[6.0]
def change
create_table :continent_landmarks do |t|
t.references :continent, null: false, foreign_key: true
t.references :landmark, null: false, foreign_key: true
t.timestamps
end
end
end