clair_app/app/models/m_odr_brand.rb
Nicolas Bally c2f8ec2efb initial
2020-10-10 00:28:38 +02:00

15 lines
270 B
Ruby

class MOdrBrand < ApplicationRecord
belongs_to :m_odr
has_many :m_odr_products
acts_as_sorting :fields => {
:id => {:name => "Id", :reorder => true},
:name => {:name => "Nom"},
:actions => {:name => "Actions", :reorder => true},
}
end