Constraints referenceLink para este cabeçalho

The classes defined in this module create database constraints. They are added in the model Meta.constraints option.

BaseConstraintLink para este cabeçalho

class BaseConstraint(*name, violation_error_code=None, violation_error_message=None)Link para esta definição

Base class for all constraints. Subclasses must implement constraint_sql(), create_sql(), remove_sql() and validate() methods.

All constraints have the following parameters in common:

nameLink para este cabeçalho

BaseConstraint.nameLink para esta definição

The name of the constraint. You must always specify a unique name for the constraint.

violation_error_codeLink para este cabeçalho

BaseConstraint.violation_error_codeLink para esta definição

The error code used when ValidationError is raised during model validation. Defaults to None.

violation_error_messageLink para este cabeçalho

BaseConstraint.violation_error_messageLink para esta definição

The error message used when ValidationError is raised during model validation. Defaults to "Constraint “%(name)s” is violated.".

validate()Link para este cabeçalho

BaseConstraint.validate(model, instance, exclude=None, using=DEFAULT_DB_ALIAS)Link para esta definição

Validates that the constraint, defined on model, is respected on the instance. This will do a query on the database to ensure that the constraint is respected. If fields in the exclude list are needed to validate the constraint, the constraint is ignored.

Raise a ValidationError if the constraint is violated.

This method must be implemented by a subclass.

CheckConstraintLink para este cabeçalho

class CheckConstraint(*, condition, name, violation_error_code=None, violation_error_message=None)Link para esta definição

Creates a check constraint in the database.

conditionLink para este cabeçalho

CheckConstraint.conditionLink para esta definição

A Q object or boolean Expression that specifies the conditional check you want the constraint to enforce.

Por exemplo:

Code
CheckConstraint(condition=Q(age__gte=18), name="age_gte_18")

ensures the age field is never less than 18.

UniqueConstraintLink para este cabeçalho

class UniqueConstraint(*expressions, fields=(), name, condition=None, deferrable=None, include=None, opclasses=(), nulls_distinct=None, violation_error_code=None, violation_error_message=None)Link para esta definição

Creates a uniqueness guarantee in the database, enforced by either a unique constraint or a unique index depending on the options used.

expressionsLink para este cabeçalho

UniqueConstraint.expressionsLink para esta definição

Positional argument *expressions allows creating functional unique constraints on expressions and database functions.

Por exemplo:

Code
UniqueConstraint(Lower("name").desc(), "category", name="unique_lower_name_category")

creates a unique constraint on the lowercased value of the name field in descending order and the category field in the default ascending order.

Functional unique constraints have the same database restrictions as Index.expressions.

fieldsLink para este cabeçalho

UniqueConstraint.fieldsLink para esta definição

A list of field names that specifies the unique set of columns you want the constraint to enforce.

Por exemplo:

Code
UniqueConstraint(fields=["room", "date"], name="unique_booking")

ensures each room can only be booked once for each date.

conditionLink para este cabeçalho

UniqueConstraint.conditionLink para esta definição

A Q object that specifies the condition you want the constraint to enforce.

Por exemplo:

Code
UniqueConstraint(fields=["user"], condition=Q(status="DRAFT"), name="unique_draft_user")

ensures that each user only has one draft.

These conditions have the same database restrictions as Index.condition.

deferrableLink para este cabeçalho

UniqueConstraint.deferrableLink para esta definição

Set this parameter to create a deferrable unique constraint. Accepted values are Deferrable.DEFERRED or Deferrable.IMMEDIATE. For example:

Code
from django.db.models import Deferrable, UniqueConstraint

UniqueConstraint(
    name="unique_order",
    fields=["order"],
    deferrable=Deferrable.DEFERRED,
)

By default constraints are not deferred. A deferred constraint will not be enforced until the end of the transaction. An immediate constraint will be enforced immediately after every command.

Unique constraints with condition, include, opclasses, or expressions may be implemented as unique indexes rather than unique constraints. In that case, deferrable cannot be set.

includeLink para este cabeçalho

UniqueConstraint.includeLink para esta definição

A list or tuple of the names of the fields to be included in the covering unique index as non-key columns. This allows index-only scans to be used for queries that select only included fields (include) and filter only by unique fields (fields).

Por exemplo:

Code
UniqueConstraint(name="unique_booking", fields=["room", "date"], include=["full_name"])

will allow filtering on room and date, also selecting full_name, while fetching data only from the index.

Unique constraints with non-key columns are ignored for databases besides PostgreSQL.

Non-key columns have the same database restrictions as Index.include.

opclassesLink para este cabeçalho

UniqueConstraint.opclassesLink para esta definição

The names of the PostgreSQL operator classes to use for this unique index. If you require a custom operator class, you must provide one for each field in the index.

Por exemplo:

Code
UniqueConstraint(
    name="unique_username", fields=["username"], opclasses=["varchar_pattern_ops"]
)

creates a unique index on username using varchar_pattern_ops.

opclasses are ignored for databases besides PostgreSQL.

nulls_distinctLink para este cabeçalho

UniqueConstraint.nulls_distinctLink para esta definição

Whether rows containing NULL values covered by the unique constraint should be considered distinct from each other. The default value is None which uses the database default which is True on most backends.

Por exemplo:

Code
UniqueConstraint(name="ordering", fields=["ordering"], nulls_distinct=False)

creates a unique constraint that only allows one row to store a NULL value in the ordering column.

Unique constraints with nulls_distinct are ignored for databases besides PostgreSQL.

violation_error_codeLink para este cabeçalho

UniqueConstraint.violation_error_codeLink para esta definição

The error code used when a ValidationError is raised during model validation.

Defaults to BaseConstraint.violation_error_code, when either UniqueConstraint.condition is set or UniqueConstraint.fields is not set.

If UniqueConstraint.fields is set without a UniqueConstraint.condition, defaults to the Meta.unique_together error code when there are multiple fields, and to the Field.unique error code when there is a single field.

violation_error_messageLink para este cabeçalho

UniqueConstraint.violation_error_messageLink para esta definição

The error message used when a ValidationError is raised during model validation.

Defaults to BaseConstraint.violation_error_message, when either UniqueConstraint.condition is set or UniqueConstraint.fields is not set.

If UniqueConstraint.fields is set without a UniqueConstraint.condition, defaults to the Meta.unique_together error message when there are multiple fields, and to the Field.unique error message when there is a single field.