aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/lib/active_record/associations/has_many_through_association.rb
Commit message (Expand)AuthorAgeFilesLines
...
* Refactored AssociationCollection#count for uniformity and Ruby 1.8.7 support.Ernie Miller2008-08-281-10/+0
* Use type_condition method for hmt STI conditionTarmo Tänav2008-08-151-1/+1
* Extract owner_quoted_id so it can be overridden. [#292 state:committed]Andre Arko2008-06-251-3/+3
* Add ActiveRecord::Base.sti_name that checks ActiveRecord::Base#store_full_sti...rick2008-05-311-1/+1
* Merge docrails.Pratik Naik2008-05-251-1/+1
* best solution?Steven Soroka2008-05-011-2/+2
* Remove duplicate code from associations. [Pratik]Pratik Naik2008-04-061-60/+10
* Refactor HasManyThroughAssociation to inherit from HasManyAssociation. Associ...Pratik Naik2008-04-061-61/+32
* Add efficient #include? to AssociationCollection (for has_many/has_many :thro...Rick Olson2008-04-011-1/+1
* Fixed that has_many :through would ignore the hash conditions (closes #11447)...David Heinemeier Hansson2008-03-281-2/+14
* Fix issue where the :uniq option of a has_many :through association is ignore...Rick Olson2008-03-261-5/+3
* Merge the has_finder gem, renamed as 'named_scope'. Closes #11404 [nkallen]Rick Olson2008-03-241-1/+3
* Add :readonly option to HasManyThrough associations. Closes #11156 [miloops]Pratik Naik2008-03-071-1/+4
* Improve performance by avoiding named block arguments. Closes #11109 [adymo]Michael Koziarski2008-02-291-5/+19
* Remove dead code from hmt#delete. Closes #11236 [rubyruy]Jeremy Kemper2008-02-271-1/+1
* Make dynamic finders respect the :include on HasManyThrough associations. Cl...Michael Koziarski2008-02-181-0/+1
* Revert [8865], broke AP record identifier. Reopens #11109.Jeremy Kemper2008-02-151-7/+5
* Minor formatting changesMichael Koziarski2008-02-141-3/+3
* Improve associations performance by avoiding named block arguments. Closes #1...Rick Olson2008-02-141-5/+7
* Revert r8742: remove has_many with :group option since it has sketchy sql sup...Jeremy Kemper2008-02-031-9/+0
* Fix has_many :through a polymorphic has_many. Closes #10529 [Aleksey Kondrate...Jeremy Kemper2008-02-021-1/+1
* Make sure count works on has_many :through associations using :group. Closes...Michael Koziarski2008-01-271-0/+9
* More thoroughly quote table names. Exposes some issues with sqlite2 adapter. ...Jeremy Kemper2008-01-051-8/+8
* Ruby 1.9 compat: fix warnings, shadowed block vars, and unitialized instance ...Jeremy Kemper2007-12-221-6/+25
* Ensure that the :uniq option for has_many :through associations retains the o...Rick Olson2007-12-111-1/+2
* Fix typos (closes #10378)David Heinemeier Hansson2007-12-051-1/+1
* Dynamic finders on association collections respect association :limit. Closes...Jeremy Kemper2007-11-211-1/+2
* Make Dynamic Finders on Association Collections Respect Association :order [p...Michael Koziarski2007-11-211-1/+2
* Fix HasManyThrough Association so it uses :conditions on the HasMany Associat...Rick Olson2007-11-111-1/+2
* Fix has_many :through delete with custom foreign keys. Closes #6466.Jeremy Kemper2007-10-271-8/+14
* Alias association #build to #new so it behaves predictably. Closes #8787.Jeremy Kemper2007-10-151-0/+1
* Make size for has_many :through use counter cache if it exists. Closes #9734...Rick Olson2007-09-301-1/+11
* Formatting, grammar and spelling fixes for the associations documentation. [s...Michael Koziarski2007-08-281-1/+1
* Ensure that has_many :through associations use a count query instead of loadi...Rick Olson2007-07-251-0/+7
* Refactored in use of extract_options! (closes #9079) [josh]David Heinemeier Hansson2007-07-241-1/+1
* Fix #count on a has_many :through association so that it recognizes the :uniq...Rick Olson2007-07-201-0/+10
* Make create! on a has_many :through association return the association objec...Michael Koziarski2007-07-111-1/+2
* with_scope is protected. Closes #8524.Jeremy Kemper2007-05-301-3/+3
* Improve Performance of calling create on has_many :through associations by av...Michael Koziarski2007-04-261-7/+5
* Allow a polymorphic :source for has_many :through associations. Closes #7143...Rick Olson2007-03-131-1/+11
* Fix has_many :through << with custom foreign keys. Closes #6466, #7153.Jeremy Kemper2007-03-051-1/+1
* Fix has_many :through to add the appropriate conditions when going through an...Rick Olson2006-10-161-2/+3
* Add #delete support to has_many :through associations. Closes #6049 [Martin ...Rick Olson2006-10-091-0/+18
* Backed out of new_record? to new? transformation as it would screw up existin...David Heinemeier Hansson2006-09-051-4/+4
* Deprecated ActiveRecord::Base.new_record? in favor of ActiveRecord::Base.new?...David Heinemeier Hansson2006-09-051-4/+4
* Rename quote to quote_value so the name can be used in AR models. #3628 [Koz]Michael Koziarski2006-09-041-2/+2
* has_many :through conditions are sanitized by the associating class. Closes #...Jeremy Kemper2006-09-011-2/+2
* Pushing a record onto a has_many :through sets the association's foreign key ...Jeremy Kemper2006-08-201-1/+2
* unbraindeadify addition to has_many :throughJeremy Kemper2006-08-191-4/+12
* Pushing a record onto a has_many :through sets the association's foreign key ...Jeremy Kemper2006-08-191-5/+13