mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-01-31 21:37:16 +00:00
8 lines
215 B
Ruby
8 lines
215 B
Ruby
class Customer < ActiveRecord::Base
|
|
belongs_to :enterprise
|
|
|
|
validates :code, presence: true, uniqueness: {scope: :enterprise_id}
|
|
validates :email, presence: true
|
|
validates :enterprise_id, presence: true
|
|
end
|