diff options
| author | Paolo Melchiorre <paolo@melchiorre.org> | 2017-03-29 23:52:42 +0200 |
|---|---|---|
| committer | Tim Graham <timograham@gmail.com> | 2017-04-25 20:21:36 -0400 |
| commit | fcb5dbfec0542faaa1b0adad754a1caf1bcd65e2 (patch) | |
| tree | a81d7f63382578206e943e539165fecf43c00e64 /tests/postgres_tests/models.py | |
| parent | 98ee57e343206ef553de78b22be5e9a6dacb5060 (diff) | |
Fixed #27996 -- Added RandomUUID function and CryptoExtension to contrib.postgres.
Diffstat (limited to 'tests/postgres_tests/models.py')
| -rw-r--r-- | tests/postgres_tests/models.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/tests/postgres_tests/models.py b/tests/postgres_tests/models.py index 15fb5ab4ee..001ed00d0c 100644 --- a/tests/postgres_tests/models.py +++ b/tests/postgres_tests/models.py @@ -171,3 +171,7 @@ class StatTestModel(models.Model): class NowTestModel(models.Model): when = models.DateTimeField(null=True, default=None) + + +class UUIDTestModel(models.Model): + uuid = models.UUIDField(default=None, null=True) |
