diff options
Diffstat (limited to 'activerecord/test/fixtures')
-rw-r--r-- | activerecord/test/fixtures/author.rb | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/activerecord/test/fixtures/author.rb b/activerecord/test/fixtures/author.rb index 979c72ec63..782a7d608f 100644 --- a/activerecord/test/fixtures/author.rb +++ b/activerecord/test/fixtures/author.rb @@ -15,6 +15,7 @@ class Author < ActiveRecord::Base end end has_many :comments, :through => :posts + has_many :comments_desc, :through => :posts, :source => :comments, :order => 'comments.id DESC' has_many :funky_comments, :through => :posts, :source => :comments has_many :special_posts |