class CreateMonsterKills < ActiveRecord::Migration[6.1] def change create_table :monster_kills do |t| t.references :monster, null: false, foreign_key: true t.references :character, null: false, foreign_key: true t.bigint :quantity t.timestamps end end end