notebook/db/migrate/20180130233902_create_technology_creatures.rb
2018-07-05 01:10:52 -05:00

12 lines
353 B
Ruby

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