1 class Product < ActiveRecord::Base
 
   2         set_primary_keys :id  # redundant
 
   3         has_many :product_tariffs, :foreign_key => :product_id
 
   4         has_one :product_tariff, :foreign_key => :product_id
 
   6         has_many :tariffs, :through => :product_tariffs, :foreign_key => [:tariff_id, :tariff_start_date]