Save a model without triggering a signal nor the save() method
It happens you may want to save one of your model but without triggering any pre_save / post_save signal, nor the save() method of your model. Reasons could be, your are restoring some fixtures data, you don't want to update the object modification date that is configured with auto_now = True, you want to skip some validations, etc.
There had been a ticket opened in the past to request such a ...
read more