test/fixtures/restaurant.rb in composite_primary_keys-5.0.0.rc1 vs test/fixtures/restaurant.rb in composite_primary_keys-5.0.0
- old
+ new
@@ -1,6 +1,6 @@
class Restaurant < ActiveRecord::Base
- set_primary_keys :franchise_id, :store_id
+ self.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]
has_and_belongs_to_many :products,
:foreign_key => [:franchise_id, :store_id],