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

11 lines
281 B
Ruby
Executable File

class LabelMarque < ActiveRecord::Base
belongs_to :label_entreprise
has_many :label_distributeur_marques
has_many :label_distributeurs, :through => :label_distributeur_marques
has_many :label_produits
belongs_to :image_file
validates :name, :presence => true
end