本文介绍 django.db.models.UniqueConstraint.deferrable
的用法。
声明
UniqueConstraint.deferrable
设置此参数以创建可延迟的唯一约束。接受的值为 Deferrable.DEFERRED
或 Deferrable.IMMEDIATE
。例如:
from django.db.models import Deferrable, UniqueConstraint
UniqueConstraint(
name='unique_order',
fields=['order'],
deferrable=Deferrable.DEFERRED,
)
默认情况下不延迟约束。直到事务结束时才会强制执行延迟约束。立即约束将在每个命令之后立即强制执行。
MySQL、MariaDB 和 SQLite。
MySQL、MariaDB 和 SQLite 都忽略了可延迟的唯一约束,因为它们都不支持。
警告
延迟的唯一约束可能会导致 performance penalty 。
相关用法
- Python Django UniqueConstraint.condition用法及代码示例
- Python Django UniqueConstraint.expressions用法及代码示例
- Python Django UniqueConstraint.opclasses用法及代码示例
- Python Django UniqueConstraint.include用法及代码示例
- Python Django Union用法及代码示例
- Python Unicode转ASCII用法及代码示例
- Python Union()用法及代码示例
- Python PIL UnsahrpMask()用法及代码示例
- Python Django UUIDField用法及代码示例
- Python MongoDB Update_one()用法及代码示例
- Python Django USERNAME_FIELD用法及代码示例
- Python Django UserPassesTestMixin.test_func用法及代码示例
- Python Tableau UserItem用法及代码示例
- Python Django Upper用法及代码示例
- Python Django UpdateView.object用法及代码示例
- Python cudf.core.column.string.StringMethods.is_vowel用法及代码示例
- Python torch.distributed.rpc.rpc_async用法及代码示例
- Python torch.nn.InstanceNorm3d用法及代码示例
- Python sklearn.cluster.MiniBatchKMeans用法及代码示例
- Python pandas.arrays.IntervalArray.is_empty用法及代码示例
- Python tf.compat.v1.distributions.Multinomial.stddev用法及代码示例
- Python numpy.less()用法及代码示例
- Python Matplotlib.figure.Figure.add_gridspec()用法及代码示例
- Python tf.compat.v1.distribute.MirroredStrategy.experimental_distribute_dataset用法及代码示例
- Python Django File.save用法及代码示例
注:本文由纯净天空筛选整理自djangoproject.com大神的英文原创作品 django.db.models.UniqueConstraint.deferrable。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。