[Django]-Auto_now field is not updating with updating using filter()

8👍

This behaviour described in the docs:

The field is only automatically updated when calling Model.save(). The
field isn’t updated when making updates to other fields in other ways
such as QuerySet.update(), though you can specify a custom value for
the field in an update like that.

Leave a comment