aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/lib/active_record/associations/has_many_through_association.rb
Commit message (Expand)AuthorAgeFilesLines
...
* 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
* Add records to has_many :through using <<, push, and concat by creating the a...Jeremy Kemper2006-08-181-29/+69
* Calculate sum with SQL, not Enumerable on HasManyThrough Associations. [Dan P...Rick Olson2006-07-311-1/+6
* fix association exception messages, fix them so the error messages actually d...Rick Olson2006-07-201-1/+1
* Allow :uniq => true with has_many :through associations.Jeremy Kemper2006-05-061-2/+4
* Raise error when trying to add to a has_many :through association. Use the J...Rick Olson2006-04-251-1/+8
* Added descriptive error messages for invalid has_many :through associations: ...Rick Olson2006-04-051-10/+13
* Fixed issue that kept :select options from being scoped [Rick]Rick Olson2006-03-261-1/+1
* Change has_many :through to use the :source option to specify the source asso...Rick Olson2006-03-241-1/+1
* Allow overriding of find parameters in scoped has_many :through calls [Rick O...Rick Olson2006-03-211-9/+9
* Quit ignoring default :include options in has_many :through calls [Mark James]Rick Olson2006-03-191-5/+7
* Allow has_many :through to work on has_many associations (closes #3864) [sco@...Rick Olson2006-03-191-17/+36
* Raise error when trying to select many polymorphic objects with has_many :thr...Rick Olson2006-03-191-24/+9
* Fixed has_many :through to include :conditions set on the :through associatio...Rick Olson2006-03-181-5/+19
* Fix that has_many :through honors the foreign key set by the belongs_to assoc...Rick Olson2006-03-181-2/+5
* Nicer error message on has_many :through when :through reflection can not be ...David Heinemeier Hansson2006-03-181-1/+3
* Use association's :conditions when eager loading. [jeremyevans0@gmail.com] cl...Rick Olson2006-03-161-2/+2
* Added Base.abstract_class? that marks which classes are not part of the Activ...Rick Olson2006-03-161-1/+1
* Allow has_many :through to work with :include [Michael Schoen]. Closes #3611Michael Koziarski2006-02-101-1/+1
* allow has_many :through to work with custom :foreign key (closes #3422) [Rick...David Heinemeier Hansson2006-01-211-2/+1
* Fix .count for has_many associations with multi-line finder-sql. Closes #3540 Michael Koziarski2006-01-211-1/+2
* removed :piggyback in favor of just allowing :select on :through associationsTobias Lütke2005-12-201-5/+1
* made .find() and class method delegation work on :through relationsTobias Lütke2005-12-201-2/+33
* added :piggyback option to has_many :through relationships to pick up values ...Tobias Lütke2005-12-201-1/+9