diff options
author | Hannes Ljungberg <hannes.ljungberg@gmail.com> | 2021-01-13 19:38:23 +0100 |
---|---|---|
committer | Mariusz Felisiak <felisiak.mariusz@gmail.com> | 2021-01-14 08:32:26 +0100 |
commit | ffe756d6242d513bfbba9686b5a3d90f0a67c214 (patch) | |
tree | 3ce80a9836f6014191a7542bb0fb4784aa3e53ad /django/db/backends/postgresql/features.py | |
parent | b5cef91a91c9dbb697b65ef978a7de0b2c5cf564 (diff) | |
download | django-ffe756d6242d513bfbba9686b5a3d90f0a67c214.tar.gz |
Refs #26167 -- Changed default value of DatabaseFeatures.supports_expression_indexes to True.
Diffstat (limited to 'django/db/backends/postgresql/features.py')
-rw-r--r-- | django/db/backends/postgresql/features.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/django/db/backends/postgresql/features.py b/django/db/backends/postgresql/features.py index b7ec377739..84259c0c19 100644 --- a/django/db/backends/postgresql/features.py +++ b/django/db/backends/postgresql/features.py @@ -58,7 +58,6 @@ class DatabaseFeatures(BaseDatabaseFeatures): supports_deferrable_unique_constraints = True has_json_operators = True json_key_contains_list_matching_requires_list = True - supports_expression_indexes = True django_test_skips = { 'opclasses are PostgreSQL only.': { |