aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/test/fixtures/author.rb
diff options
context:
space:
mode:
authorRick Olson <technoweenie@gmail.com>2007-12-11 20:08:30 +0000
committerRick Olson <technoweenie@gmail.com>2007-12-11 20:08:30 +0000
commit66e97c34c116bbf0e7b87802e81a9f7df0684b47 (patch)
treec9cd3bcb8e58a6259194bf412a8434c0852a3411 /activerecord/test/fixtures/author.rb
parentf67add4283069653f5707bd45cff214913dfc579 (diff)
downloadrails-66e97c34c116bbf0e7b87802e81a9f7df0684b47.tar.gz
rails-66e97c34c116bbf0e7b87802e81a9f7df0684b47.tar.bz2
rails-66e97c34c116bbf0e7b87802e81a9f7df0684b47.zip
Ensure that the :uniq option for has_many :through associations retains the order. #10463 [remvee]
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@8376 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'activerecord/test/fixtures/author.rb')
-rw-r--r--activerecord/test/fixtures/author.rb2
1 files changed, 2 insertions, 0 deletions
diff --git a/activerecord/test/fixtures/author.rb b/activerecord/test/fixtures/author.rb
index d41d8ac439..1503e17f87 100644
--- a/activerecord/test/fixtures/author.rb
+++ b/activerecord/test/fixtures/author.rb
@@ -18,6 +18,8 @@ class Author < ActiveRecord::Base
has_many :comments_desc, :through => :posts, :source => :comments, :order => 'comments.id DESC'
has_many :limited_comments, :through => :posts, :source => :comments, :limit => 1
has_many :funky_comments, :through => :posts, :source => :comments
+ has_many :ordered_uniq_comments, :through => :posts, :source => :comments, :uniq => true, :order => 'comments.id'
+ has_many :ordered_uniq_comments_desc, :through => :posts, :source => :comments, :uniq => true, :order => 'comments.id DESC'
has_many :special_posts
has_many :special_post_comments, :through => :special_posts, :source => :comments