Recursive delete in google app engine

前端 未结 4 1144
长发绾君心
长发绾君心 2021-02-09 17:37

I\'m using google app engine with django 1.0.2 (and the django-helper) and wonder how people go about doing recursive delete. Suppose you have a model that\'s something like thi

4条回答
  •  被撕碎了的回忆
    2021-02-09 18:21

    Actually that behavior is GAE-specific. Django's ORM simulates "ON DELETE CASCADE" on .delete().

    I know that this is not an answer to your question, but maybe it can help you from looking in the wrong places.

提交回复
热议问题