blob: 96ccefefae11c427b01757ba0d269c8634049a5d (
plain)
1
2
3
4
5
6
7
8
9
10
|
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
|