diff options
author | Rick Olson <technoweenie@gmail.com> | 2006-03-21 16:33:22 +0000 |
---|---|---|
committer | Rick Olson <technoweenie@gmail.com> | 2006-03-21 16:33:22 +0000 |
commit | 6fbf40823851c9f99c86c1287af0cfca725776e0 (patch) | |
tree | 1e1c31909175fdbc6c1e13bd0ab86b21dcb18592 /activerecord/CHANGELOG | |
parent | c8470f8a5b74eefd498397a8effdf37b4dc28674 (diff) | |
download | rails-6fbf40823851c9f99c86c1287af0cfca725776e0.tar.gz rails-6fbf40823851c9f99c86c1287af0cfca725776e0.tar.bz2 rails-6fbf40823851c9f99c86c1287af0cfca725776e0.zip |
Allow overriding of find parameters in scoped has_many :through calls [Rick Olson]
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@4007 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'activerecord/CHANGELOG')
-rw-r--r-- | activerecord/CHANGELOG | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/activerecord/CHANGELOG b/activerecord/CHANGELOG index 7949a1736d..510b1c1f62 100644 --- a/activerecord/CHANGELOG +++ b/activerecord/CHANGELOG @@ -1,5 +1,19 @@ *SVN* +* Allow overriding of find parameters in scoped has_many :through calls [Rick Olson] + + In this example, :include => false disables the default eager association from loading. :select changes the standard + select clause. :joins specifies a join that is added to the end of the has_many :through query. + + class Post < ActiveRecord::Base + has_many :tags, :through => :taggings, :include => :tagging do + def add_joins_and_select + find :all, :select => 'tags.*, authors.id as author_id', :include => false, + :joins => 'left outer join posts on taggings.taggable_id = posts.id left outer join authors on posts.author_id = authors.id' + end + end + end + * Fixed that schema changes while the database was open would break any connections to a SQLite database (now we reconnect if that error is throw) [DHH] * Don't classify the has_one class when eager loading, it is already singular. Add tests. (closes #4117) [jonathan@bluewire.net.nz] |