class CreateOrderPromotionCodes < ActiveRecord::Migration[8.0] def change create_table :order_promotion_codes do |t| t.references :order, null: false, foreign_key: true t.references :promotion_code, null: false, foreign_key: true t.timestamps end end end