summaryrefslogtreecommitdiff
path: root/docs/ref/contrib/postgres
diff options
context:
space:
mode:
authorMariusz Felisiak <felisiak.mariusz@gmail.com>2022-05-19 09:26:48 +0200
committerGitHub <noreply@github.com>2022-05-19 09:26:48 +0200
commit981c23c0ccbcaa155a80f894fd9e832beaab661d (patch)
treee74d0d4ef436c10bbd426d8197f8486e551f2144 /docs/ref/contrib/postgres
parent9f5548952906c6ea97200c016734b4f519520a64 (diff)
Fixed #33717 -- Dropped support for PostgreSQL 11.
Diffstat (limited to 'docs/ref/contrib/postgres')
-rw-r--r--docs/ref/contrib/postgres/constraints.txt4
-rw-r--r--docs/ref/contrib/postgres/fields.txt4
-rw-r--r--docs/ref/contrib/postgres/operations.txt4
3 files changed, 4 insertions, 8 deletions
diff --git a/docs/ref/contrib/postgres/constraints.txt b/docs/ref/contrib/postgres/constraints.txt
index 26c6356693..44f1f56db1 100644
--- a/docs/ref/contrib/postgres/constraints.txt
+++ b/docs/ref/contrib/postgres/constraints.txt
@@ -139,8 +139,8 @@ used for queries that select only included fields
(:attr:`~ExclusionConstraint.include`) and filter only by indexed fields
(:attr:`~ExclusionConstraint.expressions`).
-``include`` is supported for GiST indexes on PostgreSQL 12+ and SP-GiST
-indexes on PostgreSQL 14+.
+``include`` is supported for GiST indexes. PostgreSQL 14+ also supports
+``include`` for SP-GiST indexes.
.. versionchanged:: 4.1
diff --git a/docs/ref/contrib/postgres/fields.txt b/docs/ref/contrib/postgres/fields.txt
index fe4b3856ab..d460cecc70 100644
--- a/docs/ref/contrib/postgres/fields.txt
+++ b/docs/ref/contrib/postgres/fields.txt
@@ -287,8 +287,8 @@ transform do not change. For example::
.. admonition:: Case-insensitive collations
- On PostgreSQL 12+, it's preferable to use non-deterministic collations
- instead of the ``citext`` extension. You can create them using the
+ It's preferable to use non-deterministic collations instead of the
+ ``citext`` extension. You can create them using the
:class:`~django.contrib.postgres.operations.CreateCollation` migration
operation. For more details, see :ref:`manage-postgresql-collations` and
the PostgreSQL documentation about `non-deterministic collations`_.
diff --git a/docs/ref/contrib/postgres/operations.txt b/docs/ref/contrib/postgres/operations.txt
index 46ba3300ae..d5b8a9e0d6 100644
--- a/docs/ref/contrib/postgres/operations.txt
+++ b/docs/ref/contrib/postgres/operations.txt
@@ -151,10 +151,6 @@ For example, to create a collation for German phone book ordering::
``provider``, and ``deterministic`` arguments. Therefore, ``locale`` is
required to make this operation reversible.
-.. admonition:: Restrictions
-
- Non-deterministic collations are supported only on PostgreSQL 12+.
-
Concurrent index operations
===========================