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
*
Adds :nullify option to :depends. Closes #2015 (Robby Russell)
Tobias Lütke
2005-10-15
1
-8
/
+28
*
Association validation does not belong in a before_save callback: move it int...
Jeremy Kemper
2005-10-02
1
-40
/
+40
*
Ticket #2156 - Use foreign_key inflection uniformly
Jeremy Kemper
2005-09-28
1
-2
/
+2
*
r3653@asus: jeremy | 2005-09-28 00:23:49 -0700
Jeremy Kemper
2005-09-28
1
-1
/
+3
*
Fixed saving a record with two unsaved belongs_to associations pointing to th...
Jamis Buck
2005-09-20
1
-5
/
+7
*
Fix eager loading error messages, allow :include to specify tables using stri...
Nicholas Seckar
2005-09-18
1
-2
/
+3
*
Refactored to a more readble form #1813
David Heinemeier Hansson
2005-09-11
1
-3
/
+1
*
Refactored away all the legacy validate_options calls and replaced them with ...
David Heinemeier Hansson
2005-09-09
1
-13
/
+14
*
Revert [2040], caused assignment of belongs_to associations to fail in some c...
Jamis Buck
2005-08-24
1
-5
/
+3
*
Saving a record with two unsaved belongs_to associations pointing to the same...
Jamis Buck
2005-08-23
1
-3
/
+5
*
Added support for limit and offset with eager loading of has_one and belongs_...
David Heinemeier Hansson
2005-07-11
1
-8
/
+28
*
better error message for missing associations #1631 [courtenay]
David Heinemeier Hansson
2005-07-09
1
-4
/
+11
*
Made documentation ready for release (AR)
David Heinemeier Hansson
2005-07-06
1
-2
/
+2
*
Added callback hooks to association collections #1549 [Florian Weber]
David Heinemeier Hansson
2005-07-04
1
-3
/
+43
*
Fixed that single-table inheritance sub-classes couldn't be used to limit the...
David Heinemeier Hansson
2005-07-03
1
-0
/
+10
*
Updated all references to the old find_first and find_all to use the new styl...
David Heinemeier Hansson
2005-06-26
1
-1
/
+1
*
Fixed problem with eager loading when using a has_and_belongs_to_many associa...
David Heinemeier Hansson
2005-06-26
1
-1
/
+1
*
Fixed that clear_association_cache doesn't delete new associations on new rec...
David Heinemeier Hansson
2005-06-25
1
-1
/
+1
*
Fixed docs #856
David Heinemeier Hansson
2005-06-21
1
-4
/
+3
*
Fixed saving of in-memory association structures to happen as a after_create/...
David Heinemeier Hansson
2005-06-17
1
-1
/
+5
*
Added actual database-changing behavior to collection assigment for has_many ...
David Heinemeier Hansson
2005-06-16
1
-1
/
+17
*
Eager loading of dependent has_one associations won't delete the association ...
Jamis Buck
2005-06-10
1
-1
/
+1
*
Added a second parameter to the build and create method for has_one that cont...
David Heinemeier Hansson
2005-06-06
1
-3
/
+4
*
Added note of limitation for #1279
David Heinemeier Hansson
2005-05-21
1
-1
/
+2
*
Fixed that :delete_sql in has_and_belongs_to_many associations couldn't acces...
David Heinemeier Hansson
2005-05-19
1
-0
/
+2
*
Fixed association picture reference
David Heinemeier Hansson
2005-04-30
1
-1
/
+1
*
Dont reload on empty associations
David Heinemeier Hansson
2005-04-19
1
-2
/
+4
*
Fixed order of loading in eager associations
David Heinemeier Hansson
2005-04-19
1
-10
/
+16
*
Fixed that :get, :post, and the others should take a flash array as the third...
David Heinemeier Hansson
2005-04-19
1
-0
/
+3
*
Added documentation about :limit not working with eager loading
David Heinemeier Hansson
2005-04-19
1
-3
/
+6
*
Speeded up eager loading a whole bunch
David Heinemeier Hansson
2005-04-18
1
-50
/
+38
*
Updated documentation here and there
David Heinemeier Hansson
2005-04-18
1
-7
/
+3
*
Added documentation for new Base.find API and eager association loading
David Heinemeier Hansson
2005-04-18
1
-0
/
+35
*
Refactored a bit
David Heinemeier Hansson
2005-04-18
1
-5
/
+1
*
Changed habtm eager loading to also use joins
David Heinemeier Hansson
2005-04-18
1
-26
/
+10
*
Dont initialize the association proxy for nil records
David Heinemeier Hansson
2005-04-14
1
-0
/
+1
*
Moved build_association and create_association for has_one and belongs_to out...
David Heinemeier Hansson
2005-04-12
1
-12
/
+31
*
Added support for has_and_belongs_to_many associations in eager loading #1064...
David Heinemeier Hansson
2005-04-10
1
-31
/
+118
*
Use :foreign_key option if specified on the association
David Heinemeier Hansson
2005-04-05
1
-2
/
+2
*
Dont include multiple versions of the same association object
David Heinemeier Hansson
2005-04-04
1
-1
/
+1
*
Made eager loading work even more
David Heinemeier Hansson
2005-04-03
1
-3
/
+17
*
Allow order, conditions, and joins in finds that include associations
David Heinemeier Hansson
2005-04-03
1
-3
/
+8
*
Only include associations when the relevant rows have content
David Heinemeier Hansson
2005-04-03
1
-1
/
+1
*
Added new Base.find API and deprecated find_all, find_first. Added preliminar...
David Heinemeier Hansson
2005-04-03
1
-1
/
+55
*
Removed broken attempt to DRY module ClassMethod #970
David Heinemeier Hansson
2005-04-02
1
-0
/
+5
*
Automatically extend the class which gets a module included with the ClassMet...
David Heinemeier Hansson
2005-04-02
1
-5
/
+0
*
Added that model.items.delete(child) will delete the child, not just set the ...
David Heinemeier Hansson
2005-04-02
1
-1
/
+4
*
Fixed that :counter_cache option would look for a line_items_count column for...
David Heinemeier Hansson
2005-03-23
1
-2
/
+2
*
Added destruction of dependent objects in has_one associations when a new ass...
David Heinemeier Hansson
2005-03-06
1
-1
/
+2
*
Finished polishing API docs
David Heinemeier Hansson
2005-02-23
1
-1
/
+1
[next]