notebook/db/migrate/20171231230712_create_town_countries.rb
2018-07-05 01:10:52 -05:00

12 lines
334 B
Ruby

class CreateTownCountries < ActiveRecord::Migration[4.2]
def change
create_table :town_countries do |t|
t.references :user, index: true, foreign_key: true
t.references :town, index: true, foreign_key: true
t.references :country, index: true, foreign_key: true
t.timestamps null: false
end
end
end