diff options
| author | Nick Pope <nick.pope@flightdataservices.com> | 2020-07-26 22:29:05 +0100 |
|---|---|---|
| committer | Mariusz Felisiak <felisiak.mariusz@gmail.com> | 2020-07-28 07:21:16 +0200 |
| commit | 628c4a26eee93417bb7161aa393dffb3f4c146b2 (patch) | |
| tree | 6e7fb7f3133352983088381dd712bcc9de4e742b /docs | |
| parent | 83fbaa92311dd96e330496a0e443ea71b9c183e2 (diff) | |
Refs #27996 -- Doc'd no extension required for RandomUUID() on PostgreSQL 13+.
https://www.postgresql.org/docs/13/functions-uuid.html
https://www.postgresql.org/docs/13/pgcrypto.html#id-1.11.7.34.10.5
Diffstat (limited to 'docs')
| -rw-r--r-- | docs/ref/contrib/postgres/functions.txt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/ref/contrib/postgres/functions.txt b/docs/ref/contrib/postgres/functions.txt index 2c00ce8a1a..447af266a2 100644 --- a/docs/ref/contrib/postgres/functions.txt +++ b/docs/ref/contrib/postgres/functions.txt @@ -14,8 +14,8 @@ All of these functions are available from the Returns a version 4 UUID. -The `pgcrypto extension`_ must be installed. You can use the -:class:`~django.contrib.postgres.operations.CryptoExtension` migration +On PostgreSQL < 13, the `pgcrypto extension`_ must be installed. You can use +the :class:`~django.contrib.postgres.operations.CryptoExtension` migration operation to install it. .. _pgcrypto extension: https://www.postgresql.org/docs/current/pgcrypto.html |
