aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/lib/active_record
diff options
context:
space:
mode:
authorXavier Noria <fxn@hashref.com>2010-08-08 18:33:55 +0200
committerXavier Noria <fxn@hashref.com>2010-08-08 18:33:55 +0200
commitb7c4523a94c8cbd13f183f4bce17db13143d45f1 (patch)
treea6212e471234eaf6570528616126e71de7384028 /activerecord/lib/active_record
parentddeaf6c8877599b18b371232e72ed7150f5bb688 (diff)
parentfc01adee79cd38069d89c2e457be99911e2a0ea3 (diff)
downloadrails-b7c4523a94c8cbd13f183f4bce17db13143d45f1.tar.gz
rails-b7c4523a94c8cbd13f183f4bce17db13143d45f1.tar.bz2
rails-b7c4523a94c8cbd13f183f4bce17db13143d45f1.zip
Merge remote branch 'docrails/master'
Diffstat (limited to 'activerecord/lib/active_record')
-rw-r--r--activerecord/lib/active_record/associations.rb13
1 files changed, 5 insertions, 8 deletions
diff --git a/activerecord/lib/active_record/associations.rb b/activerecord/lib/active_record/associations.rb
index 2556d243f6..73c0900c8b 100644
--- a/activerecord/lib/active_record/associations.rb
+++ b/activerecord/lib/active_record/associations.rb
@@ -1593,15 +1593,12 @@ module ActiveRecord
# Creates before_destroy callback methods that nullify, delete or destroy
# has_many associated objects, according to the defined :dependent rule.
- # If the association is marked as :dependent => :restrict, create a callback
- # that prevents deleting entirely.
#
- # See HasManyAssociation#delete_records. Dependent associations
- # delete children, otherwise foreign key is set to NULL.
- # See HasManyAssociation#delete_records. Dependent associations
- # delete children if the option is set to :destroy or :delete_all, set the
- # foreign key to NULL if the option is set to :nullify, and do not touch the
- # child records if the option is set to :restrict.
+ # See HasManyAssociation#delete_records for more information. In general
+ # - delete children if the option is set to :destroy or :delete_all
+ # - set the foreign key to NULL if the option is set to :nullify
+ # - do not delete the parent record if there is any child record if the
+ # option is set to :restrict
#
# The +extra_conditions+ parameter, which is not used within the main
# Active Record codebase, is meant to allow plugins to define extra