summaryrefslogtreecommitdiff
path: root/docs/ref/models
diff options
context:
space:
mode:
authorMariusz Felisiak <felisiak.mariusz@gmail.com>2025-10-03 13:17:01 +0200
committerJacob Walls <jacobtylerwalls@gmail.com>2025-10-03 17:12:57 -0400
commit5bd775703c361d05458f1d81684500705d0f51ea (patch)
treed5465d30e9086e935241689ae3d0442b8198c04e /docs/ref/models
parent2514857e3fae831106832cca8823237801cf2cad (diff)
Fixed #36623 -- Dropped support for PostgreSQL 14 and PostGIS 3.1.
Diffstat (limited to 'docs/ref/models')
-rw-r--r--docs/ref/models/constraints.txt2
-rw-r--r--docs/ref/models/indexes.txt5
2 files changed, 3 insertions, 4 deletions
diff --git a/docs/ref/models/constraints.txt b/docs/ref/models/constraints.txt
index 34be41962b..9a51c5c7a2 100644
--- a/docs/ref/models/constraints.txt
+++ b/docs/ref/models/constraints.txt
@@ -273,7 +273,7 @@ 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 15+.
+PostgreSQL.
``violation_error_code``
------------------------
diff --git a/docs/ref/models/indexes.txt b/docs/ref/models/indexes.txt
index 6046abf029..d2b2430643 100644
--- a/docs/ref/models/indexes.txt
+++ b/docs/ref/models/indexes.txt
@@ -214,9 +214,8 @@ See the PostgreSQL documentation for more details about `covering indexes`_.
.. admonition:: Restrictions on PostgreSQL
- PostgreSQL supports covering B-Tree and :class:`GiST indexes
- <django.contrib.postgres.indexes.GistIndex>`. PostgreSQL 14+ also supports
- covering :class:`SP-GiST indexes
+ PostgreSQL supports covering B-Tree, :class:`GiST indexes
+ <django.contrib.postgres.indexes.GistIndex>`, and :class:`SP-GiST indexes
<django.contrib.postgres.indexes.SpGistIndex>`.
.. _covering indexes: https://www.postgresql.org/docs/current/indexes-index-only-scans.html