diff options
author | David Wobrock <david.wobrock@gmail.com> | 2022-05-02 17:22:54 +0200 |
---|---|---|
committer | Mariusz Felisiak <felisiak.mariusz@gmail.com> | 2022-05-12 20:44:03 +0200 |
commit | eacd4977f6a4bb038e82796ba79a2f61bae330c6 (patch) | |
tree | 8d9b1c7d18226a8922826257ed997cee6229af10 /django/db/backends/postgresql/features.py | |
parent | 20e65a34aea0ace077033c84854dcf225e248f8c (diff) | |
download | django-eacd4977f6a4bb038e82796ba79a2f61bae330c6.tar.gz |
Refs #27064 -- Added RenameIndex migration operation.
Diffstat (limited to 'django/db/backends/postgresql/features.py')
-rw-r--r-- | django/db/backends/postgresql/features.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/django/db/backends/postgresql/features.py b/django/db/backends/postgresql/features.py index 57688642eb..ce01e88603 100644 --- a/django/db/backends/postgresql/features.py +++ b/django/db/backends/postgresql/features.py @@ -60,6 +60,7 @@ class DatabaseFeatures(BaseDatabaseFeatures): supports_update_conflicts = True supports_update_conflicts_with_target = True supports_covering_indexes = True + can_rename_index = True test_collations = { "non_default": "sv-x-icu", "swedish_ci": "sv-x-icu", |