aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/lib/active_record/associations.rb
Commit message (Expand)AuthorAgeFilesLines
* Update docs to reflect 71bf75Pratik Naik2008-06-111-1/+1
* Disable validations for associated belongs_to record by defaultPratik Naik2008-06-111-1/+1
* Add :validate option to associations. [#301 state:resolved]Jan De Poorter2008-06-111-8/+16
* Fix conditions and order on join tables with limited eager loading. [#372 st...Tiago Macedo2008-06-081-1/+3
* Merge docrails.Pratik Naik2008-05-251-57/+67
* Added :select option to has_one and belongs_to, remove unused :order option o...josevalim2008-05-241-7/+9
* Merge documentation changes from docrails.Pratik Naik2008-05-161-0/+2
* DRY associations code and improve eager loading tests.Pratik Naik2008-05-151-20/+5
* Make sure needed table joins are included :select option. [#110 state:resolved]John Devine2008-05-151-1/+15
* Merge docrails:Pratik Naik2008-05-091-137/+138
* Added logic to associations.rb to make sure select_for_limited_idsJohn Devine2008-05-061-1/+24
* Revert "Ensure that save on child object fails for invalid belongs_to associa...Michael Koziarski2008-04-111-2/+0
* Ensure that save on child object fails for invalid belongs_to association. Cl...Pratik Naik2008-04-101-0/+2
* Ensure that save on parent object fails for invalid has_one association. Clos...Pratik Naik2008-04-061-0/+13
* Refactor HasManyThroughAssociation to inherit from HasManyAssociation. Associ...Pratik Naik2008-04-061-10/+17
* Improve documentation.Pratik Naik2008-04-051-4/+4
* Fix duplicate table alias error when including an association with a has_many...Rick Olson2008-03-261-25/+27
* Merge the has_finder gem, renamed as 'named_scope'. Closes #11404 [nkallen]Rick Olson2008-03-241-1/+1
* has_one :through supports :source_type. Fix up some tests. References #4756.Jeremy Kemper2008-03-221-1/+1
* Allow association scoping for built/created records if :conditions is specifi...Rick Olson2008-03-211-3/+7
* Add has_one :through support, finally. Closes #4756 [thechrisoshow]Rick Olson2008-03-211-15/+41
* Docfixes (closes #11356, #11172, #10523)David Heinemeier Hansson2008-03-201-0/+3
* Improve performance on :include/:conditions/:limit queries by selectively joi...Michael Koziarski2008-03-031-10/+27
* Fix that batched :include would pull in duplicate records in some cases. Clos...Jeremy Kemper2008-02-281-2/+4
* Improve associations performance by using symbol callbacks instead of string ...Rick Olson2008-02-141-50/+90
* Introduce the :readonly option to all associations. Records from the associat...Jeremy Kemper2008-02-131-5/+13
* Fix eager loading with pre-quoted table names. Closes #11046 [danielmorrison,...Michael Koziarski2008-02-111-2/+2
* Revert r8742: remove has_many with :group option since it has sketchy sql sup...Jeremy Kemper2008-02-031-6/+0
* Make sure count works on has_many :through associations using :group. Closes...Michael Koziarski2008-01-271-0/+6
* Indicate in documentation that newer version of AR support eager loading in p...Marcel Molina2008-01-231-1/+5
* belongs_to supports :dependent => :destroy and :delete. Closes #10592.Jeremy Kemper2008-01-191-0/+19
* Introduce preload query strategy for eager :includes. Closes #9640.Jeremy Kemper2008-01-191-1/+5
* Document that .build doesn't apply to has_many :through associations. Closes ...Jeremy Kemper2008-01-051-1/+1
* Document that eager loading doesn't work with polymorphic associations. Close...Jeremy Kemper2008-01-041-0/+17
* Don't unnecessarily load has_many associations in after_update callbacks. Cl...Rick Olson2007-12-281-1/+5
* Ruby 1.9 compat: fix warnings, shadowed block vars, and unitialized instance ...Jeremy Kemper2007-12-221-189/+207
* Eager belongs_to :include infers the foreign key from the association name ra...Jeremy Kemper2007-12-211-3/+3
* Fix typo in documentation for polymorphic associations w/STI. Closes #7461 [j...Marcel Molina2007-12-051-2/+2
* Fix typos (closes #10378)David Heinemeier Hansson2007-12-051-1/+1
* Fix that options[:from] table names should never be quoted [DHH]David Heinemeier Hansson2007-12-051-1/+1
* Ensure that column names are quoted. Closes #10134 [wesley.moxam]Michael Koziarski2007-11-101-31/+48
* Removed unused code (closes #9906)David Heinemeier Hansson2007-11-091-4/+0
* Smattering of grammatical fixes to documentation. Closes #10083 [BobSilva]Marcel Molina2007-11-081-15/+14
* Address shortcomings of changeset [8054] [protocool]David Heinemeier Hansson2007-11-071-73/+24
* Update association/method mapping table to refected latest collection methods...Marcel Molina2007-11-061-6/+6
* 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