Sha256: 310f5788e93d4103e32ad9812e3d83167606d95de322ad2d02c7c585bd9af916
Contents?: true
Size: 318 Bytes
Versions: 4
Compression:
Stored size: 318 Bytes
Contents
class Product < ActiveRecord::Base set_primary_keys :id # redundant has_many :product_tariffs, :foreign_key => :product_id, :dependent => :delete_all has_one :product_tariff, :foreign_key => :product_id has_many :tariffs, :through => :product_tariffs, :foreign_key => [:tariff_id, :tariff_start_date] end
Version data entries
4 entries across 4 versions & 1 rubygems