Sha256: e8db74771dfed12cfe3328d82b47f4d6a7b3d18db661853d59464387b0d964c3
Contents?: true
Size: 389 Bytes
Versions: 16
Compression:
Stored size: 389 Bytes
Contents
class Product < ActiveRecord::Base set_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
16 entries across 16 versions & 1 rubygems