aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/lib/active_record/associations/has_many_association.rb
Commit message (Expand)AuthorAgeFilesLines
* Refactor association create and build so before & after callbacks behave cons...Jeremy Kemper2007-10-161-7/+1
* Removed unused @join_sql reference (closes #9174) [danger]David Heinemeier Hansson2007-09-221-1/+1
* Fix association writer with :dependent => :nullify. Closes #7314.Jeremy Kemper2007-09-141-8/+11
* Don't clobber :includes passed to count on has_many association. Closes #9175...Michael Koziarski2007-08-161-1/+1
* Make sure has_many associations honour :include when counting. Closes #9167 [...Michael Koziarski2007-08-161-1/+1
* Refactored in use of extract_options! (closes #9079) [josh]David Heinemeier Hansson2007-07-241-1/+1
* Remove deprecated count(conditions=nil, joins=nil) usage. Closes #8993 [lifo...Rick Olson2007-07-161-1/+1
* Remove deprecated find_first and find_all.Jeremy Kemper2007-06-111-19/+0
* Simplify association proxy implementation by factoring construct_scope out of...Jeremy Kemper2006-11-191-20/+6
* update deprecations to include alternative methods (where available)Jamis Buck2006-10-241-2/+2
* The has_many create method works with polymorphic associations. Closes #6361.Jeremy Kemper2006-10-081-4/+5
* Deprecation: count class method should be called with an options hash rather ...Jeremy Kemper2006-09-261-1/+1
* Deprecation tests. Remove warnings for dynamic finders and for the foo_count ...Jeremy Kemper2006-09-151-0/+2
* Backed out of new_record? to new? transformation as it would screw up existin...David Heinemeier Hansson2006-09-051-2/+2
* Deprecated ActiveRecord::Base.new_record? in favor of ActiveRecord::Base.new?...David Heinemeier Hansson2006-09-051-2/+2
* Rename quote to quote_value so the name can be used in AR models. #3628 [Koz]Michael Koziarski2006-09-041-1/+1
* Allow #count through a has_many association to accept :include. [Dan Peterson]Rick Olson2006-07-241-0/+1
* Fixed that has_many.create ended up with duplicate objects (closes #5250) [da...David Heinemeier Hansson2006-06-031-1/+1
* Minor style tweaksDavid Heinemeier Hansson2006-05-211-6/+2
* Fixed that has_many collections shouldn't load the entire association to do b...David Heinemeier Hansson2006-05-211-2/+27
* Allow :uniq => true with has_many :through associations.Jeremy Kemper2006-05-061-8/+0
* Fix the HasManyAssociation#count method so it uses the new ActiveRecord::Base...Rick Olson2006-04-191-4/+7
* Fix HasManyAssociation#find bugs when :finder_sql is set (closes #4600) [lagr...David Heinemeier Hansson2006-04-061-1/+1
* Use association's :conditions when eager loading. [jeremyevans0@gmail.com] cl...Rick Olson2006-03-161-3/+2
* Added Base.abstract_class? that marks which classes are not part of the Activ...Rick Olson2006-03-161-1/+1
* save polymorphic joins from the has_many|one association (closes #3812) [Rick...David Heinemeier Hansson2006-02-121-2/+2
* Using AssociationCollection#build with arrays of hashes should call build, no...David Heinemeier Hansson2006-02-031-1/+1
* Fix .count for has_many associations with multi-line finder-sql. Closes #3540 Michael Koziarski2006-01-211-1/+2
* Added option inheritance for find calls on has_and_belongs_to_many and has_ma...David Heinemeier Hansson2005-12-131-9/+8
* Added preliminary support for join models [DHH] Added preliminary support for...David Heinemeier Hansson2005-12-031-53/+52
* Work-in progress for providing better join model support and polymorphic asso...David Heinemeier Hansson2005-12-021-7/+14
* Add :group option, correspond to GROUP BY, to the find method and to the has_...Jeremy Kemper2005-11-101-1/+2
* Added :include as an option for association declarations [DHH]David Heinemeier Hansson2005-11-061-5/+15
* r2915@asus: jeremy | 2005-11-06 05:02:53 -0800Jeremy Kemper2005-11-061-3/+8
* Added extension capabilities to has_many and has_and_belongs_to_many proxies ...David Heinemeier Hansson2005-11-041-0/+14
* Parenthesize :conditionsJeremy Kemper2005-10-181-4/+4
* DRYed up Associations#clear. Closes #1906 [Caleb]Tobias Lütke2005-10-141-14/+0
* r3653@asus: jeremy | 2005-09-28 00:23:49 -0700Jeremy Kemper2005-09-281-1/+7
* Wrap :conditions in parentheses to prevent problems with OR's #1871Jamis Buck2005-09-241-1/+1
* Added support for calling constrained class methods on has_many and has_and_b...David Heinemeier Hansson2005-07-221-1/+1
* Pass association finder arguments through to the association class exactly as...Jeremy Kemper2005-06-241-1/+3
* Be sure to use the @finder_sql in the has_many association's #find method, ev...Jamis Buck2005-06-131-2/+4
* r1294@iwill: jeremy | 2005-06-13 02:17:42 -0700Jeremy Kemper2005-06-131-1/+3
* Optimize counting of has_many associations by setting the association to empt...David Heinemeier Hansson2005-04-231-1/+5
* Fixed stray comma when using eager loading and ordering together from has_man...David Heinemeier Hansson2005-04-191-1/+7
* Updated documentation here and thereDavid Heinemeier Hansson2005-04-181-5/+6
* Dont prefix on updates and deletes, only selectsDavid Heinemeier Hansson2005-04-171-1/+1
* Honor the order in the new finderDavid Heinemeier Hansson2005-04-151-0/+1
* Qualify the ids used such that eager loading can avoid ambigious keysDavid Heinemeier Hansson2005-04-131-3/+3
* More eager fixesDavid Heinemeier Hansson2005-04-031-3/+1