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

# ProductOrder
# quantity: integer
class ProductOrder < ApplicationRecord
  belongs_to :order
  belongs_to :product
end