super-graph/examples/rails-app/app/models/product.rb
2019-10-05 00:49:39 -04:00

4 lines
81 B
Ruby

class Product < ApplicationRecord
has_many :customers, through: :purchases
end