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

9 lines
314 B
Ruby

class Customer < ApplicationRecord
# Include default devise modules. Others available are:
# :confirmable, :lockable, :timeoutable, :trackable and :omniauthable
devise :database_authenticatable, :registerable,
:recoverable, :rememberable, :validatable
has_many :products, through: :purchases
end