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