The Python Oracle

Django Bulk Update to Trigger save()

Become part of the top 3% of the developers by applying to Toptal https://topt.al/25cXVn

--

Music by Eric Matyas
https://www.soundimage.org
Track title: Ominous Technology Looping

--

Chapters
00:00 Question
00:50 Accepted answer (Score 5)
01:34 Thank you

--

Full question
https://stackoverflow.com/questions/2832...

Accepted answer links:
[impossible]: https://docs.djangoproject.com/en/1.7/re...

--

Content licensed under CC BY-SA
https://meta.stackexchange.com/help/lice...

--

Tags
#python #django #djangoorm

#avk47



ACCEPTED ANSWER

Score 6


No, this is impossible:

Realize that update() does an update at the SQL level and, thus, does not call any save() methods on your models, nor does it emit the pre_save or post_save signals (which are a consequence of calling Model.save()). If you want to update a bunch of records for a model that has a custom save() method, loop over them and call save()

$ ./manage.py shell
Python 2.7.6 (default, Mar 22 2014, 22:59:38) 
[GCC 4.8.2] on linux2
Type "help", "copyright", "credits" or "license" for more information.
(InteractiveConsole)
>>> from django.contrib.auth.models import User
>>> for u in User.objects.all():
...     u.is_active = True
...     u.save()
... 
>>>