aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/lib/active_record/associations.rb
Commit message (Expand)AuthorAgeFilesLines
* 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
* Ensure that Associations#include_eager_conditions? checks both scoped and exp...Rick Olson2006-04-191-5/+13
* Associations#select_limited_ids_list adds the ORDER BY columns to the SELECT ...Rick Olson2006-04-181-4/+5
* DRY up association collection reader method generation.Marcel Molina2006-04-151-6/+3
* Allow multiple association extensions with :extend option (closes #4666) [Jo...Rick Olson2006-04-111-0/+8
* Fixed that loading including associations returns all results if Load IDs For...Rick Olson2006-04-061-5/+13
* Doc fix (closes #4609)David Heinemeier Hansson2006-04-061-1/+1
* Support eager includes when going through a polymorphic has_many association....Rick Olson2006-04-051-18/+32
* Added support for eagerly including polymorphic has_one associations. (closes...Rick Olson2006-04-051-6/+10
* Added descriptive error messages for invalid has_many :through associations: ...Rick Olson2006-04-051-0/+12
* Fixed that records returned from has_and_belongs_to_many associations with ad...David Heinemeier Hansson2006-04-011-6/+5
* documentation for polymorphic joinsRick Olson2006-03-281-1/+23
* Fixed documentationDavid Heinemeier Hansson2006-03-281-4/+4
* Making ActiveRecord faster [skaes]David Heinemeier Hansson2006-03-271-11/+14
* Fixed eager loading so that an aliased table cannot clash with a has_and_belo...Rick Olson2006-03-271-2/+2
* Add support for :include to with_scope [andrew@redlinesoftware.com]Michael Koziarski2006-03-271-9/+9
* remove some documentation cruft on has_manyRick Olson2006-03-241-3/+0
* Change has_many :through to use the :source option to specify the source asso...Rick Olson2006-03-241-9/+61
* STI associations are now aliased to the table name for backwards compatibilit...Rick Olson2006-03-231-9/+54
* Don't classify the has_one class when eager loading, it is already singular. ...Rick Olson2006-03-191-15/+18
* Quit ignoring default :include options in has_many :through calls [Mark James]Rick Olson2006-03-191-6/+12
* Allow has_many :through associations to find the source association by settin...Rick Olson2006-03-191-3/+3
* Eager Loading support added for has_many :through => :has_many associations (...Rick Olson2006-03-191-4/+14
* Raise error when trying to select many polymorphic objects with has_many :thr...Rick Olson2006-03-191-0/+48
* Fixed has_many :through to include :conditions set on the :through associatio...Rick Olson2006-03-181-3/+7
* Update lingering uses of deprecated association dependency options (closes #4...David Heinemeier Hansson2006-03-181-1/+1
* Fixed that eager loading from belongs_to would cause the association to be do...David Heinemeier Hansson2006-03-181-1/+1
* fixed has_many :conditions sanitizing (closes #4278) [hakuja@hakuja.net]Rick Olson2006-03-181-2/+2