I was reading Django's article on model fields and models.CASCADE. I don't understand this phrase:
Model.delete() isn’t called on related models
models.CASCADE
means that related objects to delete when the target object deleted ,so what is the meaning of "isn't called on related models"?
Please explain that for me.