summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDuane Hilton <duane9@gmail.com>2016-03-12 09:15:57 -0700
committerTim Graham <timograham@gmail.com>2016-03-12 12:39:00 -0500
commitca5c05ddbe91f4aae38c4543240dbda5f1fb1db2 (patch)
treec179a78af5e810f65648d7e72b44869fec00c529
parent2495023a4cae28f494d0a6172abfac3a47a0b816 (diff)
Fixed #26239 -- Added a note about how auto_now works with QuerySet.update().
-rw-r--r--docs/ref/models/fields.txt6
1 files changed, 6 insertions, 0 deletions
diff --git a/docs/ref/models/fields.txt b/docs/ref/models/fields.txt
index 21409f562b..f82d983be8 100644
--- a/docs/ref/models/fields.txt
+++ b/docs/ref/models/fields.txt
@@ -501,6 +501,12 @@ optional arguments:
for "last-modified" timestamps. Note that the current date is *always*
used; it's not just a default value that you can override.
+ The field is only automatically updated when calling :meth:`Model.save()
+ <django.db.models.Model.save>`. The field isn't updated when making updates
+ to other fields in other ways such as :meth:`QuerySet.update()
+ <django.db.models.query.QuerySet.update>`, though you can specify a custom
+ value for the field in an update like that.
+
.. attribute:: DateField.auto_now_add
Automatically set the field to now when the object is first created. Useful