notebook/db/migrate/20180131061726_create_location_landmarks.rb
2018-07-05 01:10:52 -05:00

12 lines
347 B
Ruby

class CreateLocationLandmarks < ActiveRecord::Migration[4.2]
def change
create_table :location_landmarks do |t|
t.references :location, index: true, foreign_key: true
t.references :landmark, index: true, foreign_key: true
t.references :user, index: true, foreign_key: true
t.timestamps null: false
end
end
end