aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/lib/active_record/associations/has_many_association.rb
Commit message (Expand)AuthorAgeFilesLines
* 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
* Made eager loading work even moreDavid Heinemeier Hansson2005-04-031-13/+9
* Added that model.items.delete(child) will delete the child, not just set the ...David Heinemeier Hansson2005-04-021-5/+9
* Fixed that HasManyAssociation#count was using :finder_sql rather than :counte...David Heinemeier Hansson2005-03-061-1/+3
* Fixed that association#count would produce invalid sql when called sequential...David Heinemeier Hansson2005-02-281-3/+3
* Added the option of supplying an array of ids and attributes to Base#update, ...David Heinemeier Hansson2005-01-251-5/+9
* Fixed that find_all would produce invalid sql when called sequentialy #490 [S...David Heinemeier Hansson2005-01-201-1/+1
* Added support for associating unsaved objects #402 [Tim Bates]David Heinemeier Hansson2005-01-151-30/+34
* Fixed that conditions in has_many and has_and_belongs_to_many should be inter...David Heinemeier Hansson2005-01-071-1/+1
* Fixed the last details to please DB2David Heinemeier Hansson2005-01-031-1/+1
* Added HasManyAssociation#count that works like Base#count #413 [intinig]David Heinemeier Hansson2005-01-021-0/+11
* Added that Base#find takes an optional options hash, including :conditions. B...David Heinemeier Hansson2005-01-011-25/+39
* Fixed that options[:counter_sql] was overwritten with interpolated sql rather...David Heinemeier Hansson2004-12-221-1/+2
* Fixed value quoting in all generated SQL statements, so that integers are not...David Heinemeier Hansson2004-12-071-7/+10
* Added counter_sql option for has_many associations [bitsweat]David Heinemeier Hansson2004-12-071-6/+12
* InitialDavid Heinemeier Hansson2004-11-241-0/+102