Sha256: 348ad5fe2c56960dd9c55b9291983bd92fc56213069e47200bfe3e1c47f50854
Contents?: true
Size: 401 Bytes
Versions: 29
Compression:
Stored size: 401 Bytes
Contents
class Product < ActiveRecord::Base self.primary_keys = :id # redundant has_many :product_tariffs, :foreign_key => :product_id, :dependent => :delete_all has_many :tariffs, :through => :product_tariffs, :foreign_key => [:tariff_id, :tariff_start_date] has_and_belongs_to_many :restaurants, :foreign_key => :product_id, :association_foreign_key => [:franchise_id, :store_id] end
Version data entries
29 entries across 29 versions & 1 rubygems