summaryrefslogtreecommitdiff
path: root/docs/ref
diff options
context:
space:
mode:
authorSarah Boyce <42296566+sarahboyce@users.noreply.github.com>2024-12-13 09:30:29 +0100
committerSarah Boyce <42296566+sarahboyce@users.noreply.github.com>2025-01-15 22:28:37 +0100
commit85750bd2f8ed7e595aac25c7e5fd7218528a25b1 (patch)
tree42859dcca836621a48e41617c0723807d07fd41c /docs/ref
parent4968f0012e7f97c613fcb71781c4e50874c31c15 (diff)
Refs #35234 -- Removed CheckConstraint.check per deprecation timeline.
Diffstat (limited to 'docs/ref')
-rw-r--r--docs/ref/models/constraints.txt4
1 files changed, 0 insertions, 4 deletions
diff --git a/docs/ref/models/constraints.txt b/docs/ref/models/constraints.txt
index 897c122f05..99e5332ca3 100644
--- a/docs/ref/models/constraints.txt
+++ b/docs/ref/models/constraints.txt
@@ -123,10 +123,6 @@ ensures the age field is never less than 18.
CheckConstraint(condition=Q(age__gte=18) | Q(age__isnull=True), name="age_gte_18")
-.. deprecated:: 5.1
-
- The ``check`` attribute is deprecated in favor of ``condition``.
-
``UniqueConstraint``
====================