summaryrefslogtreecommitdiff
path: root/docs/ref
diff options
context:
space:
mode:
Diffstat (limited to 'docs/ref')
-rw-r--r--docs/ref/contrib/postgres/operations.txt7
1 files changed, 7 insertions, 0 deletions
diff --git a/docs/ref/contrib/postgres/operations.txt b/docs/ref/contrib/postgres/operations.txt
index 8696e4e81f..8571cc84e8 100644
--- a/docs/ref/contrib/postgres/operations.txt
+++ b/docs/ref/contrib/postgres/operations.txt
@@ -30,12 +30,19 @@ For example::
...
]
+Django checks that the extension already exists in the database and skips the
+migration if so.
+
For most extensions, this requires a database user with superuser privileges.
If the Django database user doesn't have the appropriate privileges, you'll
have to create the extension outside of Django migrations with a user that has
them. In that case, connect to your Django database and run the query
``CREATE EXTENSION IF NOT EXISTS hstore;``.
+.. versionchanged:: 3.2
+
+ In older versions, the existence of an extension isn't checked.
+
.. currentmodule:: django.contrib.postgres.operations
``CreateExtension``