6 lines
192 B
Ruby
Executable File
6 lines
192 B
Ruby
Executable File
class LabelDistributeur < ActiveRecord::Base
|
|
has_many :label_distributeur_marques
|
|
has_many :label_marques, :through => :label_distributeur_marques
|
|
validates :name, :presence => true
|
|
end
|