From e1cfa6e0705f37b5f8cb885380f3a47405c24a9d Mon Sep 17 00:00:00 2001 From: Jon Leighton Date: Fri, 13 Jul 2012 19:34:40 +0100 Subject: Convert association macros to the new syntax --- activerecord/test/models/book.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'activerecord/test/models/book.rb') diff --git a/activerecord/test/models/book.rb b/activerecord/test/models/book.rb index d27d0af77c..ce81a37966 100644 --- a/activerecord/test/models/book.rb +++ b/activerecord/test/models/book.rb @@ -2,7 +2,7 @@ class Book < ActiveRecord::Base has_many :authors has_many :citations, :foreign_key => 'book1_id' - has_many :references, :through => :citations, :source => :reference_of, :uniq => true + has_many :references, -> { uniq }, :through => :citations, :source => :reference_of has_many :subscriptions has_many :subscribers, :through => :subscriptions -- cgit v1.2.3