Sha256: 6cb7123048f527387c9a0910c6398684f5c3062774b78556bd980f80a36aea5e
Contents?: true
Size: 294 Bytes
Versions: 44
Compression:
Stored size: 294 Bytes
Contents
class Tariff < ActiveRecord::Base self.primary_keys = [:tariff_id, :start_date] has_many :product_tariffs, :foreign_key => [:tariff_id, :tariff_start_date], :dependent => :delete_all has_many :products, :through => :product_tariffs, :foreign_key => [:tariff_id, :tariff_start_date] end
Version data entries
44 entries across 44 versions & 1 rubygems