aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/lib/active_record/associations/has_many_association.rb
Commit message (Expand)AuthorAgeFilesLines
* splitting a really long line into multiple lines which is easy on eyesNeeraj Singh2010-06-291-1/+5
* Adds title to activerecord/lib/active_record/associations/*Rizwan Reza2010-06-161-0/+1
* clean up more warnings, remove unnecessary methods, fix eval line numbers. [#...Aaron Patterson2010-03-161-0/+4
* save(false) is gone, use save(:validate => false) instead.José Valim2010-01-171-1/+1
* Use Arel::Table instead of ActiveRecord::Relation from HABTM and has_many#del...Pratik Naik2010-01-011-1/+1
* Rename Model.conditions and relation.conditions to .wherePratik Naik2009-12-261-1/+1
* Revert "Split arel_table into method to get a relation and another to memoize...Jeremy Kemper2009-11-131-1/+1
* Split arel_table into method to get a relation and another to memoize the def...Jeremy Kemper2009-11-131-1/+1
* Arel::In -> Arel::Predicates::InJeremy Kemper2009-11-021-1/+1
* has_many nullify associations keys using ARel.Emilio Tagua2009-08-181-9/+9
* Fix that counter_cache breaks with has_many :dependent => :nullify.Gabe da Silveira2009-08-091-0/+1
* Revert "Revert "Generate proper :counter_sql from :finder_sql when there is a...Pratik Naik2009-07-011-9/+1
* Revert "Generate proper :counter_sql from :finder_sql when there is a newline...Yehuda Katz + Carl Lerche2009-06-221-1/+9
* Generate proper :counter_sql from :finder_sql when there is a newline charact...Patrick Joyce2009-06-211-9/+1
* Providing support for :inverse_of as an option to associations.Murray Steele2009-05-041-0/+5
* Fixed that autosave should validate associations even if master is invalid [#...David Heinemeier Hansson2009-02-271-2/+2
* Merge with docrails. Also add a rake task to generate guides in your rails ap...Pratik Naik2008-10-211-0/+1
* Update the documentation to reflect the change handling :group earlierMichael Koziarski2008-09-161-1/+4
* Merge docrailsPratik Naik2008-09-031-0/+14
* Refactored AssociationCollection#count for uniformity and Ruby 1.8.7 support.Ernie Miller2008-08-281-26/+0
* Implement count limit/offset support for has_many associationsTarmo Tänav2008-08-271-1/+10
* Fix has_many#count_records. [#865 state:resolved]Xavier Noria2008-08-211-2/+5
* Remove some Symbol#to_proc usage in runtime code. [#484 state:resolved]Cheah Chu Yeow2008-07-091-2/+2
* Add has_many :primary_key option to allow setting the primary key on a has ma...Andre Arko2008-07-061-0/+8
* Extract owner_quoted_id so it can be overridden. [#292 state:committed]Andre Arko2008-06-251-3/+3
* fix eager loading with dynamic findersBrandon Keepers2008-06-091-1/+1
* Ensure AssociationCollection#count works with empty condition. [#271 state:re...Pratik Naik2008-05-291-1/+1
* Remove duplicate code from associations. [Pratik]Pratik Naik2008-04-061-41/+0
* Refactor HasManyThroughAssociation to inherit from HasManyAssociation. Associ...Pratik Naik2008-04-061-8/+0
* Ensure HABTM#create and HABTM#build do not load entire association. [Pratik]Pratik Naik2008-04-051-19/+0
* Merge the has_finder gem, renamed as 'named_scope'. Closes #11404 [nkallen]Rick Olson2008-03-241-1/+4
* More thoroughly quote table names. Exposes some issues with sqlite2 adapter. ...Jeremy Kemper2008-01-051-3/+3
* Ruby 1.9 compat: fix warnings, shadowed block vars, and unitialized instance ...Jeremy Kemper2007-12-221-2/+2
* Dynamic finders on association collections respect association :limit. Closes...Jeremy Kemper2007-11-211-1/+1
* Make Dynamic Finders on Association Collections Respect Association :order [p...Michael Koziarski2007-11-211-1/+1
* Allow find on a has_many association defined with :finder_sql to accept id ar...Marcel Molina2007-10-261-1/+1
* 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