aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/test/models
diff options
context:
space:
mode:
authorkal <kalrover.ngo@gmail.com>2015-10-16 02:18:36 +0000
committerRafael Mendonça França <rafaelmfranca@gmail.com>2015-10-20 15:25:05 -0200
commitdda4f608902752c5071809cedbe675086f0669be (patch)
treedc2b88547400cfea4c8b5ced78b368e7b3b3846e /activerecord/test/models
parentd68e81afa0e5b2697755a34e9b1d11b9b5d1df9d (diff)
downloadrails-dda4f608902752c5071809cedbe675086f0669be.tar.gz
rails-dda4f608902752c5071809cedbe675086f0669be.tar.bz2
rails-dda4f608902752c5071809cedbe675086f0669be.zip
Changed the order of Association constraints from where->order->unscope to unscope->where->order
Diffstat (limited to 'activerecord/test/models')
-rw-r--r--activerecord/test/models/post.rb1
1 files changed, 1 insertions, 0 deletions
diff --git a/activerecord/test/models/post.rb b/activerecord/test/models/post.rb
index 81a18188d4..45a379df98 100644
--- a/activerecord/test/models/post.rb
+++ b/activerecord/test/models/post.rb
@@ -67,6 +67,7 @@ class Post < ActiveRecord::Base
end
has_many :comments_with_extend_2, extend: [NamedExtension, NamedExtension2], class_name: "Comment", foreign_key: "post_id"
+ has_many :comments_with_rewhere, -> { rewhere(post_id: 2) }, class_name: "Comment"
has_many :author_favorites, :through => :author
has_many :author_categorizations, :through => :author, :source => :categorizations