aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/test/models/book.rb
diff options
context:
space:
mode:
authorJon Leighton <j@jonathanleighton.com>2012-07-13 19:34:40 +0100
committerJon Leighton <j@jonathanleighton.com>2012-07-20 14:14:51 +0100
commite1cfa6e0705f37b5f8cb885380f3a47405c24a9d (patch)
treec861793bab863a5fd227c4b87a8a689dddec5bd6 /activerecord/test/models/book.rb
parent7a271a8e844a4a5c931652a4a33a0d27445137c0 (diff)
downloadrails-e1cfa6e0705f37b5f8cb885380f3a47405c24a9d.tar.gz
rails-e1cfa6e0705f37b5f8cb885380f3a47405c24a9d.tar.bz2
rails-e1cfa6e0705f37b5f8cb885380f3a47405c24a9d.zip
Convert association macros to the new syntax
Diffstat (limited to 'activerecord/test/models/book.rb')
-rw-r--r--activerecord/test/models/book.rb2
1 files changed, 1 insertions, 1 deletions
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