If you call ``QuerySet.update`` on the following model, you'll get the results that proceed it:
# models.py class Person(models.Model): cool = models.BooleanField(default=False) updated_on=DateTimeField(auto_now=True) # django-admin.py shell >>> from myapp.models import Person >>> >>> # Check the updated_on values >>> Person.objects.values_list('updated_on', flat=True) [datetime.datetime(2012, 1, 1, 0, 0), datetime.datetime(2012, 1, 1, 0, 0)] >>> # Fine, just as they are in the fixture. Update ``cool`` field on them >>> Person.objects.update(cool=True) 2 >>> # Check the updated_on values again >>> Person.objects.values_list('updated_on', flat=True) [datetime.datetime(2012, 1, 1, 0, 0), datetime.datetime(2012, 1, 1, 0, 0)] I understand that ``QuerySet.update`` issues an UPDATE SQL statement, but Django's code could be modified to include each ``auto_now=True`` field on a model in the UPDATE statement, setting the value to ``datetime.now()`` as it does when you use ``Model.save``. If this seems reasonable, I'll be happy to write a patch and tests for it. Note: I'm using the latest trunk code (1.4 beta), pulled yesterday -- You received this message because you are subscribed to the Google Groups "Django developers" group. To post to this group, send email to django-developers@googlegroups.com. To unsubscribe from this group, send email to django-developers+unsubscr...@googlegroups.com. For more options, visit this group at http://groups.google.com/group/django-developers?hl=en.