aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/lib/active_record/associations
Commit message (Expand)AuthorAgeFilesLines
...
* Fixed that records returned from has_and_belongs_to_many associations with ad...David Heinemeier Hansson2006-04-011-3/+9
* Do not implicitly mark recordss of has_many :through as readonly but do mark ...Marcel Molina2006-03-301-1/+1
* Changed has_and_belongs_to_many join to INNER JOIN for Mysql 3.23.x. Closes ...Rick Olson2006-03-261-1/+1
* 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-192-24/+10
* 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
* Update lingering uses of deprecated association dependency options (closes #4...David Heinemeier Hansson2006-03-181-1/+1
* fixed has_many :conditions sanitizing (closes #4278) [hakuja@hakuja.net]Rick Olson2006-03-181-1/+1
* Nicer error message on has_many :through when :through reflection can not be ...David Heinemeier Hansson2006-03-181-1/+3
* remove some commented-out cruftRick Olson2006-03-161-4/+0
* Use association's :conditions when eager loading. [jeremyevans0@gmail.com] cl...Rick Olson2006-03-167-12/+24
* Added Base.abstract_class? that marks which classes are not part of the Activ...Rick Olson2006-03-165-5/+5
* Fix counter cache setting in belongs-to proxyJamis Buck2006-03-091-1/+1
* Make counter cache work when replacing an association (closes #3245). Thanks ...Jamis Buck2006-03-041-0/+11
* Fixed that calling HasOneProxy#build_model repeatedly would cause saving to h...David Heinemeier Hansson2006-03-031-1/+1
* save polymorphic joins from the has_many|one association (closes #3812) [Rick...David Heinemeier Hansson2006-02-123-4/+12
* Allow has_many :through to work with :include [Michael Schoen]. Closes #3611Michael Koziarski2006-02-101-1/+1
* Polymorphic join support for has_one associations (has_one :foo, :as => :bar)...Jeremy Kemper2006-02-091-2/+8
* Using AssociationCollection#build with arrays of hashes should call build, no...David Heinemeier Hansson2006-02-031-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-212-2/+4
* 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-134-10/+24
* 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-038-215/+244
* Work-in progress for providing better join model support and polymorphic asso...David Heinemeier Hansson2005-12-024-12/+84
* has_and_belongs_to_many: use JOIN instead of LEFT JOIN. References #2937.Jeremy Kemper2005-11-211-2/+2
* Don't add the same conditions twice in has_one finder sql. References #2916.Jeremy Kemper2005-11-171-1/+1
* Associations handle case-equality more consistently: item.parts.is_a?(Array) ...Jeremy Kemper2005-11-151-5/+12
* Add :group option, correspond to GROUP BY, to the find method and to the has_...Jeremy Kemper2005-11-101-1/+2
* Added :include as an option for association declarations [DHH]David Heinemeier Hansson2005-11-064-9/+23
* r2915@asus: jeremy | 2005-11-06 05:02:53 -0800Jeremy Kemper2005-11-062-4/+9
* Added extension capabilities to has_many and has_and_belongs_to_many proxies ...David Heinemeier Hansson2005-11-043-8/+24
* Added extension capabilities to has_many and has_and_belongs_to_many proxies ...David Heinemeier Hansson2005-11-031-2/+5
* r3800@sedna: jeremy | 2005-10-28 00:39:05 -0700Jeremy Kemper2005-10-281-1/+1
* Fix Associations#clear for not-yet-loaded associations (Patrick Lenz)Tobias Lütke2005-10-201-1/+1
* HABTM finder sets :readonly => false. Closes #2525.Jeremy Kemper2005-10-201-0/+1
* Parenthesize :conditionsJeremy Kemper2005-10-183-6/+8
* Fix bad commit. (Bad developer, bad\!)Nicholas Seckar2005-10-161-1/+1
* Add __FILE__ and __LINE__ to evalNicholas Seckar2005-10-151-1/+1
* DRYed up Associations#clear. Closes #1906 [Caleb]Tobias Lütke2005-10-143-34/+17