1 class Tariff < ActiveRecord::Base
\r
2 set_primary_keys [:tariff_id, :start_date]
\r
3 has_many :product_tariffs, :foreign_key => [:tariff_id, :tariff_start_date]
\r
4 has_one :product_tariff, :foreign_key => [:tariff_id, :tariff_start_date]
\r
5 has_many :products, :through => :product_tariffs, :foreign_key => [:tariff_id, :tariff_start_date]
\r