class CreateMonsterSpawns < ActiveRecord::Migration[6.1] def change create_table :monster_spawns do |t| t.references :monster, null: false, foreign_key: true t.references :location, null: false, foreign_key: true t.timestamps end end end