当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Python Django Options.unique_together用法及代码示例


本文介绍 django.db.models.Options.unique_together 的用法。

声明

Options.unique_together

UniqueConstraint constraints 选项一起使用。

UniqueConstraint 提供比 unique_together 更多的函数。 unique_together 将来可能会被弃用。

一组字段名称加在一起必须是唯一的:

unique_together = [['driver', 'restaurant']]

这是一起考虑时必须是唯一的列表的列表。它在 Django 管理员中使用,并在数据库级别强制执行(即,适当的 UNIQUE 语句包含在 CREATE TABLE 语句中)。

为方便起见,unique_together 在处理一组字段时可以是单个列表:

unique_together = ['driver', 'restaurant']

ManyToManyField 不能包含在 unique_together 中。 (甚至不清楚这意味着什么!)如果您需要验证与 ManyToManyField 相关的唯一性,请尝试使用信号或显式 through 模型。

违反约束时在模型验证期间引发的 ValidationError 具有 unique_together 错误代码。

相关用法


注:本文由纯净天空筛选整理自djangoproject.com大神的英文原创作品 django.db.models.Options.unique_together。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。