index
:
rails.git
3-2-stable-for-hmno
master
Mirror of official rails repo with custom fixes.
Harald Eilertsen
about
summary
refs
log
tree
commit
diff
stats
log msg
author
committer
range
path:
root
/
activerecord
/
lib
/
active_record
/
associations.rb
Commit message (
Expand
)
Author
Age
Files
Lines
*
Some performance goodness for AR associations.
Clemens Kofler
2008-09-03
1
-32
/
+32
*
Use reflection primary_key instead of id for when selecting association ids.
miloops
2008-08-30
1
-1
/
+1
*
Performance: Better query for ASSOCIATION_ids. Select only ids if the associa...
miloops
2008-08-30
1
-1
/
+5
*
Merge scoped :joins together instead of overwriting them. May expose scoping ...
Andrew White
2008-08-28
1
-2
/
+2
*
Refactored AssociationCollection#count for uniformity and Ruby 1.8.7 support.
Ernie Miller
2008-08-28
1
-0
/
+3
*
Fix two has_one :through errors
pivotal
2008-08-27
1
-3
/
+2
*
Load the first and not the last has_one result when doing join-based eager lo...
Tarmo Tänav
2008-08-25
1
-0
/
+1
*
Implement old-skool eagerloading for has_one :through
Frederick Cheung
2008-08-25
1
-2
/
+2
*
Don't interpret decimals as table names in ActiveRecord::Associations::ClassM...
Peter Wagenet
2008-08-21
1
-3
/
+3
*
Fixed STI type condition for eager loading of associations
Tarmo Tänav
2008-08-16
1
-4
/
+2
*
Fix file permissions
Tarmo Tänav
2008-07-31
1
-0
/
+0
*
Merge docrails changes
Pratik Naik
2008-07-28
1
-134
/
+284
*
Use klass.sti_name to make sure associations take store_full_sti_class into a...
Daniel Guettler
2008-07-22
1
-2
/
+2
*
Merge with docrails.
Pratik Naik
2008-07-16
1
-3
/
+4
*
Fixed postgresql limited eager loading for the case where scoped :order was p...
Tarmo Tänav
2008-07-14
1
-3
/
+8
*
Add :accessible option to Associations for allowing mass assignments using ha...
David Dollar
2008-07-14
1
-4
/
+10
*
Remove some Symbol#to_proc usage in runtime code. [#484 state:resolved]
Cheah Chu Yeow
2008-07-09
1
-2
/
+2
*
Add support for :primary_key option to has_one as well as has_many so that a ...
Brad Greenlee
2008-07-06
1
-1
/
+2
*
Add has_many :primary_key option to allow setting the primary key on a has ma...
Andre Arko
2008-07-06
1
-2
/
+3
*
Make sure associated has_many/habtm objects get saved even when :validate => ...
Jan De Poorter
2008-06-27
1
-7
/
+12
*
fix merge
rick
2008-06-19
1
-9
/
+19
|
\
|
*
Update docs to reflect 71bf75
Pratik Naik
2008-06-11
1
-1
/
+1
|
*
Disable validations for associated belongs_to record by default
Pratik Naik
2008-06-11
1
-1
/
+1
|
*
Add :validate option to associations. [#301 state:resolved]
Jan De Poorter
2008-06-11
1
-8
/
+16
|
*
Fix conditions and order on join tables with limited eager loading. [#372 st...
Tiago Macedo
2008-06-08
1
-1
/
+3
*
|
fix eager loading with dynamic finders
Brandon Keepers
2008-06-09
1
-1
/
+1
|
/
*
Merge docrails.
Pratik Naik
2008-05-25
1
-57
/
+67
*
Added :select option to has_one and belongs_to, remove unused :order option o...
josevalim
2008-05-24
1
-7
/
+9
*
Merge documentation changes from docrails.
Pratik Naik
2008-05-16
1
-0
/
+2
*
DRY associations code and improve eager loading tests.
Pratik Naik
2008-05-15
1
-20
/
+5
*
Make sure needed table joins are included :select option. [#110 state:resolved]
John Devine
2008-05-15
1
-1
/
+15
*
Merge docrails:
Pratik Naik
2008-05-09
1
-137
/
+138
*
Added logic to associations.rb to make sure select_for_limited_ids
John Devine
2008-05-06
1
-1
/
+24
*
Revert "Ensure that save on child object fails for invalid belongs_to associa...
Michael Koziarski
2008-04-11
1
-2
/
+0
*
Ensure that save on child object fails for invalid belongs_to association. Cl...
Pratik Naik
2008-04-10
1
-0
/
+2
*
Ensure that save on parent object fails for invalid has_one association. Clos...
Pratik Naik
2008-04-06
1
-0
/
+13
*
Refactor HasManyThroughAssociation to inherit from HasManyAssociation. Associ...
Pratik Naik
2008-04-06
1
-10
/
+17
*
Improve documentation.
Pratik Naik
2008-04-05
1
-4
/
+4
*
Fix duplicate table alias error when including an association with a has_many...
Rick Olson
2008-03-26
1
-25
/
+27
*
Merge the has_finder gem, renamed as 'named_scope'. Closes #11404 [nkallen]
Rick Olson
2008-03-24
1
-1
/
+1
*
has_one :through supports :source_type. Fix up some tests. References #4756.
Jeremy Kemper
2008-03-22
1
-1
/
+1
*
Allow association scoping for built/created records if :conditions is specifi...
Rick Olson
2008-03-21
1
-3
/
+7
*
Add has_one :through support, finally. Closes #4756 [thechrisoshow]
Rick Olson
2008-03-21
1
-15
/
+41
*
Docfixes (closes #11356, #11172, #10523)
David Heinemeier Hansson
2008-03-20
1
-0
/
+3
*
Improve performance on :include/:conditions/:limit queries by selectively joi...
Michael Koziarski
2008-03-03
1
-10
/
+27
*
Fix that batched :include would pull in duplicate records in some cases. Clos...
Jeremy Kemper
2008-02-28
1
-2
/
+4
*
Improve associations performance by using symbol callbacks instead of string ...
Rick Olson
2008-02-14
1
-50
/
+90
*
Introduce the :readonly option to all associations. Records from the associat...
Jeremy Kemper
2008-02-13
1
-5
/
+13
*
Fix eager loading with pre-quoted table names. Closes #11046 [danielmorrison,...
Michael Koziarski
2008-02-11
1
-2
/
+2
*
Revert r8742: remove has_many with :group option since it has sketchy sql sup...
Jeremy Kemper
2008-02-03
1
-6
/
+0
[next]