1
0
mirror of https://github.com/django/django.git synced 2025-10-31 09:41:08 +00:00

Fixed #27996 -- Added RandomUUID function and CryptoExtension to contrib.postgres.

This commit is contained in:
Paolo Melchiorre
2017-03-29 23:52:42 +02:00
committed by Tim Graham
parent 98ee57e343
commit fcb5dbfec0
9 changed files with 81 additions and 5 deletions

View File

@@ -87,6 +87,12 @@ Minor features
:class:`~django.contrib.postgres.aggregates.ArrayAgg` determines if
concatenated values will be distinct.
* The new :class:`~django.contrib.postgres.functions.RandomUUID` database
function returns a version 4 UUID. It requires use of PostgreSQL's
``pgcrypto`` extension which can be activated using the new
:class:`~django.contrib.postgres.operations.CryptoExtension` migration
operation.
:mod:`django.contrib.redirects`
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~