12 lines
209 B
Ruby
12 lines
209 B
Ruby
class PDegressif < ActiveRecord::Base
|
|
belongs_to :p_product
|
|
|
|
|
|
has_many :p_price_cat_p_degressifs, :dependent => :destroy
|
|
|
|
has_many :p_price_cats, :through => :p_price_cat_p_degressifs
|
|
|
|
|
|
|
|
end
|