super-graph/example/app/models/product.rb
Vikram Rangnekar b9d38a5e9d First commit
2019-03-24 09:57:29 -04:00

4 lines
81 B
Ruby

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