diff options
| author | Mariusz Felisiak <felisiak.mariusz@gmail.com> | 2022-05-19 09:26:48 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-05-19 09:26:48 +0200 |
| commit | 981c23c0ccbcaa155a80f894fd9e832beaab661d (patch) | |
| tree | e74d0d4ef436c10bbd426d8197f8486e551f2144 /docs/ref/models | |
| parent | 9f5548952906c6ea97200c016734b4f519520a64 (diff) | |
Fixed #33717 -- Dropped support for PostgreSQL 11.
Diffstat (limited to 'docs/ref/models')
| -rw-r--r-- | docs/ref/models/indexes.txt | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/docs/ref/models/indexes.txt b/docs/ref/models/indexes.txt index 6b3c7422b7..c6633d6998 100644 --- a/docs/ref/models/indexes.txt +++ b/docs/ref/models/indexes.txt @@ -214,10 +214,9 @@ See the PostgreSQL documentation for more details about `covering indexes`_. .. admonition:: Restrictions on PostgreSQL - PostgreSQL < 12 only supports covering B-Tree indexes, PostgreSQL 12+ also - supports covering :class:`GiST indexes - <django.contrib.postgres.indexes.GistIndex>`, and PostgreSQL 14+ also - supports covering :class:`SP-GiST indexes + PostgreSQL supports covering B-Tree and :class:`GiST indexes + <django.contrib.postgres.indexes.GistIndex>`. PostgreSQL 14+ also supports + covering :class:`SP-GiST indexes <django.contrib.postgres.indexes.SpGistIndex>`. .. versionchanged:: 4.1 |
