I have rewrite the save() method of some models of my app, and I found mymodel.objects.update() seems not triggering the rewritten save method of my model.
I am little confused what is the cleaner way / more pythonic way to address this problem
Should I:
- always call save() after objects.update() manually ( looks bad when update on filtered queryset huh
- write a manager mixin and call save() in objects.update() and replace the objects of all the mymodels that I rewrote the save() method (acceptable but not that good considering I have rewrote some managers of models
3.Any better way to do it?🥺