test/fixtures/restaurant.rb in composite_primary_keys-3.1.8 vs test/fixtures/restaurant.rb in composite_primary_keys-3.1.9

- old
+ new

@@ -1,6 +1,9 @@ class Restaurant < ActiveRecord::Base set_primary_keys :franchise_id, :store_id has_and_belongs_to_many :suburbs, :foreign_key => [:franchise_id, :store_id], :association_foreign_key => [:city_id, :suburb_id] -end \ No newline at end of file + has_and_belongs_to_many :products, + :foreign_key => [:franchise_id, :store_id], + :association_foreign_key => :product_id +end