aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/lib/active_record/associations.rb
Commit message (Expand)AuthorAgeFilesLines
* Introduce finder :joins with associations. Same :include syntax but with inne...Jeremy Kemper2007-10-291-14/+89
* Associations: speedup duplicate record check. Closes #10011.Jeremy Kemper2007-10-291-1/+28
* Allow association redefinition in subclasses. Closes #9346.Jeremy Kemper2007-10-271-2/+4
* Fix has_many :through delete with custom foreign keys. Closes #6466.Jeremy Kemper2007-10-271-0/+6
* Limited eager loading no longer ignores scoped :order. Closes #9561 [danger, ...Marcel Molina2007-10-231-6/+4
* Fix regression where the association would not construct new finder SQL on sa...Jeremy Kemper2007-10-161-4/+4
* Add notes to documentation regarding attr_readonly behavior with counter cach...Rick Olson2007-10-141-0/+3
* Ensure that 'autosaving' works when associations aren't loaded [Bryan Helmkam...Michael Koziarski2007-10-101-6/+9
* Update :dependent docs and improve its argument error message.Jeremy Kemper2007-10-091-34/+32
* belongs_to infers the foreign key from the association name instead of from t...Jeremy Kemper2007-10-081-1/+1
* Don't call attr_readonly on polymorphic belongs_to associations, in case it m...Rick Olson2007-10-051-1/+1
* Add attr_readonly to specify columns that are skipped during a normal ActiveR...Rick Olson2007-09-301-1/+5
* Fixed spelling errors (closes #9706) [tarmo/rmm5t]David Heinemeier Hansson2007-09-281-2/+2
* Correctly quote id list for limited eager loading. Closes #7482.Jeremy Kemper2007-09-221-2/+4
* Associations macros accept extension blocks alongside modules. Closes #9346.Jeremy Kemper2007-09-171-6/+6
* Eager loading respects explicit :joins. Closes #9496.Jeremy Kemper2007-09-151-1/+1
* Remove deprecated functionality from edge rails. Closes #9387 [lifofifo]Michael Koziarski2007-09-031-56/+5
* Formatting, grammar and spelling fixes for the associations documentation. [s...Michael Koziarski2007-08-281-158/+158
* Fixed that eager loading queries and with_scope should respect the :group opt...David Heinemeier Hansson2007-08-211-4/+3
* Fixed that eager loading queries should respect the :group option as well [DHH]David Heinemeier Hansson2007-08-211-0/+4
* tiny doc patches [lifo]Rick Olson2007-07-251-2/+2
* Change belongs_to so that the foreign_key assumption is taken from the associ...Rick Olson2007-07-161-6/+0
* Define collection singular ids method for has_many :through associations. Clo...Jeremy Kemper2007-06-271-2/+3
* Fix polymorphic has_one associations declared in an abstract class. Closes #8...Jeremy Kemper2007-06-251-9/+1
* Save associated records only if the association is already loaded. Closes #8713.Jeremy Kemper2007-06-211-3/+3
* Remove deprecated find_first and find_all.Jeremy Kemper2007-06-111-1/+0
* Quickref for association methods. Closes #7723.Jeremy Kemper2007-05-301-3/+40
* Ensure that associations with :dependent => :delete_all respect :conditions o...Rick Olson2007-05-241-4/+5
* Fix :through docs wrecked up by [6777]. Closes #4961.Jeremy Kemper2007-05-231-1/+2
* belongs_to assignment creates a new proxy rather than modifying its target in...Jeremy Kemper2007-05-221-4/+1
* Document deep eager includes. Closes #6267.Jeremy Kemper2007-05-191-1/+9
* belongs_to doesn't go :through. Closes #4961.Jeremy Kemper2007-05-181-2/+1
* Docs: warn that associations names shouldn't be reserved words. Closes #4378.Jeremy Kemper2007-05-181-0/+6
* Update documentation for :dependent declaration so that it explicitly uses th...Marcel Molina2007-05-061-1/+1
* documentation project patches, closes #7342, #7319, #7316, #7190 [jeremymcana...Rick Olson2007-03-271-1/+8
* Fix method visibility bug uncovered by #7854.Jeremy Kemper2007-03-181-1/+1
* trim the fatRick Olson2007-03-131-44/+0
* Allow a polymorphic :source for has_many :through associations. Closes #7143...Rick Olson2007-03-131-46/+110
* Nodoc the irrelevant (from 1.2)David Heinemeier Hansson2007-01-261-1/+1
* Remove useless code in #attribute_present? since 0 != blank?. Closes #7249 [...Rick Olson2007-01-231-2/+2
* Fix incorrect usage of #classify when creating the eager loading join stateme...Rick Olson2007-01-231-5/+5
* [DOC] clear up some ambiguity with the way has_and_belongs_to_many creates th...Rick Olson2007-01-161-1/+7
* 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