我正在定义一组模型,它们相互引用。它们是文档应用程序的模型,如下所示
class Document(models.Model):
text = models.TextField()
class Chapter(models.Model):
doc = models.ForeignKey('Document')
chapter = models.IntegerField()
我希望整数字段在每个文档中都是唯一的,但不知道该怎么做。我知道每个字段都有一个唯一的参数,但它似乎对整个表来说都是唯一的,这不是我想要的。