What are the available soft-delete policies?
masterWhen inheriting from SafeDeleteModel, you can define the _safedelete_policy attribute to control how objects are handled during deletion. The available policies are:
SOFT_DELETE: The default behavior. The object is masked from the database but not physically removed.SOFT_DELETE_CASCADE: The object is masked, and any dependent models are also masked.HARD_DELETE: The object is normally deleted from the database.HARD_DELETE_NOCASCADE: The object is hard-deleted, unless its deletion would trigger the deletion of other objects (via cascade). In that case, the object is only masked (soft-deleted) to prevent the cascade.NO_DELETE: The object is never deleted or masked (use with caution).