diff options
author | Mads Jensen <mje@inducks.org> | 2018-09-13 09:34:02 +0200 |
---|---|---|
committer | Tim Graham <timograham@gmail.com> | 2018-10-29 19:34:54 -0400 |
commit | a906c9898284a9aecb5f48bdc534e9c1273864a6 (patch) | |
tree | 3861d861073753fd0f10cf1d46413f693e43bb7d /django/db/backends/postgresql/schema.py | |
parent | 9625d13f7b76ed22c8d4c24d411531abe8502854 (diff) | |
download | django-a906c9898284a9aecb5f48bdc534e9c1273864a6.tar.gz |
Fixed #29547 -- Added support for partial indexes.
Thanks to Ian Foote, Mariusz Felisiak, Simon Charettes, and
Markus Holtermann for comments and feedback.
Diffstat (limited to 'django/db/backends/postgresql/schema.py')
-rw-r--r-- | django/db/backends/postgresql/schema.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/django/db/backends/postgresql/schema.py b/django/db/backends/postgresql/schema.py index feaddfab52..dc9959ab4f 100644 --- a/django/db/backends/postgresql/schema.py +++ b/django/db/backends/postgresql/schema.py @@ -12,7 +12,7 @@ class DatabaseSchemaEditor(BaseDatabaseSchemaEditor): sql_delete_sequence = "DROP SEQUENCE IF EXISTS %(sequence)s CASCADE" sql_set_sequence_max = "SELECT setval('%(sequence)s', MAX(%(column)s)) FROM %(table)s" - sql_create_index = "CREATE INDEX %(name)s ON %(table)s%(using)s (%(columns)s)%(extra)s" + sql_create_index = "CREATE INDEX %(name)s ON %(table)s%(using)s (%(columns)s)%(extra)s%(condition)s" sql_delete_index = "DROP INDEX IF EXISTS %(name)s" # Setting the constraint to IMMEDIATE runs any deferred checks to allow |