aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/lib/active_record/associations.rb
Commit message (Expand)AuthorAgeFilesLines
* Improve association documentation, closes #7022. [hasmanyjosh]Michael Koziarski2007-01-151-1/+65
* PostgreSQL: use a subselect to correctly perform eager finds with :limit and ...Jeremy Kemper2007-01-121-1/+7
* Subclass instantiation doesn't try to explicitly require the corresponding su...Jeremy Kemper2006-12-191-4/+0
* fix faulty inheritance tests and that eager loading grabs the wrong inheritan...Rick Olson2006-12-191-1/+1
* find supports :lock with :include. Check whether your database allows SELECT ...Jeremy Kemper2006-12-051-0/+1
* Oracle: fix limited id selection for eager loading. Closes #6515.Jeremy Kemper2006-11-101-6/+4
* Cache inheritance_column. Closes #6592.Jeremy Kemper2006-11-091-1/+1
* Find with :include respects scoped :order. Closes #5850.Jeremy Kemper2006-11-071-1/+1
* has_one :dependent => :nullify ignores nil associates. Closes #6528.Jeremy Kemper2006-11-021-1/+1
* Fix has_many :through to add the appropriate conditions when going through an...Rick Olson2006-10-161-5/+15
* automatically add primary key to #select_limited_ids_list order by clause for...Rick Olson2006-10-131-0/+1
* fix select_limited_ids_list issues in postgresql, retain current behavior in ...Rick Olson2006-10-131-4/+9
* Restore eager condition interpolation, document it's differences [Rick]Rick Olson2006-10-111-3/+7
* Reverted old select_limited_ids_list postgresql fix that caused issues in mys...Rick Olson2006-10-091-3/+2
* Removes the ability for eager loaded conditions to be interpolated, since the...Rick Olson2006-10-091-21/+11
* Docfix (closes #6040)David Heinemeier Hansson2006-10-091-0/+24
* Doc fixes (closes #6325)David Heinemeier Hansson2006-10-091-1/+4
* Association collections have an _ids reader method to match the existing writ...Jeremy Kemper2006-10-011-1/+6
* Deprecation tests. Remove warnings for dynamic finders and for the foo_count ...Jeremy Kemper2006-09-151-3/+7
* We cant make MySQL 5 happy if it means making SQLite and PostgreSQL cry. So c...David Heinemeier Hansson2006-09-081-1/+1
* Added parentheses around FROM clauses generated by Base and associations sinc...David Heinemeier Hansson2006-09-081-1/+1
* Backed out of new_record? to new? transformation as it would screw up existin...David Heinemeier Hansson2006-09-051-16/+22
* Deprecated ActiveRecord::Base.new_record? in favor of ActiveRecord::Base.new?...David Heinemeier Hansson2006-09-051-22/+16
* Rename quote to quote_value so the name can be used in AR models. #3628 [Koz]Michael Koziarski2006-09-041-5/+5
* Add deprecation warning for inferred foreign key. #6029 [Josh Susser]Rick Olson2006-09-041-0/+6
* Deprecation: use :dependent => :delete_all rather than :exclusively_dependent...Jeremy Kemper2006-09-041-1/+1
* Deprecation: update docs. Closes #5998.Jeremy Kemper2006-09-011-1/+1
* has_one supports the :dependent => :delete option which skips the typical cal...Jeremy Kemper2006-08-291-3/+6
* Add records to has_many :through using <<, push, and concat by creating the a...Jeremy Kemper2006-08-181-0/+6
* Cache nil results for :included has_one associations also. Closes #5787.Jeremy Kemper2006-08-171-3/+7
* Included associations: go deep.Jeremy Kemper2006-08-161-13/+9
* Fix for deep includes on the same association.Jeremy Kemper2006-08-141-2/+9
* Cache nil results for has_one associations so multiple calls don't call the d...Rick Olson2006-08-081-5/+5
* Don't save has_one associations unnecessarily. Closes #5735.Jeremy Kemper2006-08-061-1/+1
* Allow #count through a has_many association to accept :include. [Dan Peterson]Rick Olson2006-07-241-1/+0
* fix association exception messages, fix them so the error messages actually d...Rick Olson2006-07-201-38/+13
* Clearer has_one/belongs_to model names (account has_one :user). Closes #5632.Jeremy Kemper2006-07-071-8/+10
* Doc fix (closes #5504) [lee@omara.ca]David Heinemeier Hansson2006-07-051-0/+1
* Doc fixesDavid Heinemeier Hansson2006-07-051-3/+3
* Fixed usage of :limit and with_scope when the association in scope is a 1:m (...David Heinemeier Hansson2006-06-031-1/+1
* Fix the has_and_belongs_to_many #create doesn't populate the join for new rec...Rick Olson2006-05-291-0/+6
* Provide Association Extensions access to the instance that the association is...Rick Olson2006-05-281-0/+7
* Add a quick note about :select and eagerly included associations. [Rick]Rick Olson2006-05-231-1/+2
* Add docs for the :as option in has_one associations. Closes #5144 [cdcarter@...Rick Olson2006-05-221-1/+3
* Fix Oracle boolean support and tests. Closes #5139. [schoenm@earthlink.net]Marcel Molina2006-05-211-3/+3
* Call Inflector#demodulize on the class name when eagerly including an STI mod...Rick Olson2006-05-151-1/+1
* Allow :uniq => true with has_many :through associations.Jeremy Kemper2006-05-061-1/+4
* Replace Ruby's deprecated append_features in favor of included. [Marcel Molin...Marcel Molina2006-04-291-2/+1
* Raise error when trying to add to a has_many :through association. Use the J...Rick Olson2006-04-251-0/+10
* Allow all calculations to take the :include option, not just COUNT (closes #4...Rick Olson2006-04-251-33/+0