aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/lib/active_record/associations/has_many_through_association.rb
Commit message (Expand)AuthorAgeFilesLines
* 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
* Fixed :through relations when using STI inherited classes would use the inher...Tobias Lütke2005-12-161-1/+2
* Added option inheritance for find calls on has_and_belongs_to_many and has_ma...David Heinemeier Hansson2005-12-131-0/+2
* Added tests for join models and fixed a bug #3177David Heinemeier Hansson2005-12-111-1/+1
* Fix has_many :throughDavid Heinemeier Hansson2005-12-071-0/+1
* Added preliminary support for join models [DHH] Added preliminary support for...David Heinemeier Hansson2005-12-031-0/+80