當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。