summaryrefslogtreecommitdiff
path: root/app/models/product_cart.rb
blob: 10d4a4cf75913077dda237958eb7739e60a8a7fb (plain)
1
2
3
4
5
6
7
8
# frozen_string_literal: true

# ProductCart
# quantity: integer
class ProductCart < ApplicationRecord
  belongs_to :cart
  belongs_to :product
end