aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/test/models/post.rb
diff options
context:
space:
mode:
authorPratik Naik <pratiknaik@gmail.com>2010-01-18 23:39:19 +0530
committerPratik Naik <pratiknaik@gmail.com>2010-01-18 23:40:42 +0530
commit9e7ec2a9f13aa52cdf07cf9308e8031548dcddc0 (patch)
treebd8e438ff20486cccb23f96fc6c37e044b07132d /activerecord/test/models/post.rb
parent3c4186b366a14042a6ea6cc3432634d41986d1e2 (diff)
downloadrails-9e7ec2a9f13aa52cdf07cf9308e8031548dcddc0.tar.gz
rails-9e7ec2a9f13aa52cdf07cf9308e8031548dcddc0.tar.bz2
rails-9e7ec2a9f13aa52cdf07cf9308e8031548dcddc0.zip
Simplify calculation scope building. Remove :order from associations as it is troublesome w/ calculation methods using postgresql.
Diffstat (limited to 'activerecord/test/models/post.rb')
-rw-r--r--activerecord/test/models/post.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/activerecord/test/models/post.rb b/activerecord/test/models/post.rb
index 939df7549b..f48b35486c 100644
--- a/activerecord/test/models/post.rb
+++ b/activerecord/test/models/post.rb
@@ -25,7 +25,7 @@ class Post < ActiveRecord::Base
{ :joins => :comments, :conditions => {:comments => {:post_id => post_id} } }
}
- has_many :comments, :order => "body" do
+ has_many :comments do
def find_most_recent
find(:first, :order => "id DESC")
end