blob: a2dd894424da2769b39dd0a09b445f8f0ba6c322 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
class CreateMonsterSpawnCombats < ActiveRecord::Migration[6.1]
def change
create_table :monster_spawn_combats do |t|
t.references :monster_spawn, null: false, foreign_key: true
t.references :character, null: false, foreign_key: true
t.integer :hp_lost
t.timestamps
end
end
end
|