summaryrefslogtreecommitdiff
path: root/docs/ref/models
diff options
context:
space:
mode:
Diffstat (limited to 'docs/ref/models')
-rw-r--r--docs/ref/models/constraints.txt6
1 files changed, 3 insertions, 3 deletions
diff --git a/docs/ref/models/constraints.txt b/docs/ref/models/constraints.txt
index fa6edfd766..fd24eeee3a 100644
--- a/docs/ref/models/constraints.txt
+++ b/docs/ref/models/constraints.txt
@@ -131,10 +131,10 @@ ensures the age field is never less than 18.
name="age_gte_18_and_others",
)
-.. admonition:: Oracle
+.. admonition:: Oracle < 23c
- Checks with nullable fields on Oracle must include a condition allowing for
- ``NULL`` values in order for :meth:`validate() <BaseConstraint.validate>`
+ Checks with nullable fields on Oracle < 23c must include a condition
+ allowing for ``NULL`` values in order for :meth:`~BaseConstraint.validate`
to behave the same as check constraints validation. For example, if ``age``
is a nullable field::