class CreateItemInfixes < ActiveRecord::Migration[6.1] def change create_table :item_infixes do |t| t.references :character, null: false, foreign_key: true t.references :item, null: false, foreign_key: true t.references :skill, null: false, foreign_key: true t.timestamps end end end