heylium_app/app/models/label_produit.rb
Nicolas Bally 8e18de4077 initial
2016-08-03 00:22:29 +02:00

10 lines
256 B
Ruby
Executable File

class LabelProduit < ActiveRecord::Base
belongs_to :label_category
belongs_to :label_marque
has_one :label_famille, :through => :label_category
has_many :label_distributeurs, :through => :label_marque
validates :name, :presence => true
end