notebook/db/migrate/20171231230701_create_town_groups.rb
2018-07-05 01:10:52 -05:00

12 lines
326 B
Ruby

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