Quick question. Cant find it in documentation or rather there are contradictory information.
Does method:
save(update_fields = somefields)
works by the same principal as method:
SomeModel.objects.update(somefields here)
in terms that both methods work on the DB level without triggering SAVE method in the model?
UPDATE works on a DB level, that's clear
What about save(update_fields = somefields)???
Thank you and sorry for rather abstract question
def delete(self, using=None, keep_parents=False):
self.show = False
self.change_date = datetime.datetime.now()
self.save(update_fields=["show", "change_date"]) # will it trigger save() method in the model or not???