notebook/db/migrate/20180131062923_create_group_creatures.rb
2018-07-05 01:10:52 -05:00

12 lines
338 B
Ruby

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