class CreateHearthPlantings < ActiveRecord::Migration[6.1] def change create_table :hearth_plantings do |t| t.references :hearth, null: false, foreign_key: true t.references :item, null: false, foreign_key: true t.timestamps end end end