标签:project span mod utils 存在 doc lan 不能 但我
这可能吗?这是通用关系的用途吗?
https://docs.djangoproject.com/en/1.9/ref/models/fields/#django.db.models.ForeignKey.db_constraint
customer = models.ForeignKey(‘Customer‘, db_constraint=False)
或者如果您想要可以为空并且不强制引用完整性:
customer = models.ForeignKey(‘Customer‘, null=True, blank=True, db_constraint=False)
我们在不能保证以正确的顺序创建关系的情况下使用它.
如果设置成 False``时,访问一个不存在的关联对象将抛出 ``DoesNotExist
异常.
标签:project span mod utils 存在 doc lan 不能 但我
原文地址:https://www.cnblogs.com/robinunix/p/11445422.html