报告由于某些 ORM 原因而可能没有调用的几种方法。

示例:

class Choice:
    question = ForeignKey(Question, null=False)


choice_set = Question.objects.get(id=1).choice_set.remove()

如果外键有 null=False,则无法调用 remove 函数。