class CreateProductCarts < ActiveRecord::Migration[7.0] def change create_table :product_carts do |t| t.integer :quantity t.belongs_to :cart, index: true t.belongs_to :product, index: true t.timestamps end add_index(:product_carts, [:product_id, :cart_id], unique: true) end end