diff options
| author | Claude Paroz <claude@2xlibre.net> | 2016-07-20 09:01:57 +0200 |
|---|---|---|
| committer | Claude Paroz <claude@2xlibre.net> | 2016-07-20 17:27:29 +0200 |
| commit | 3ea7167bb599536b48422d1fa841a2d378c98a4a (patch) | |
| tree | 6e2a375367635511af2c39cd34343c7a98ccb1ab /django | |
| parent | 271bfe65d986f5ecbaeb7a70a3092356c0a9e222 (diff) | |
Refs #24928 -- Added introspection support for UUIDField
Diffstat (limited to 'django')
| -rw-r--r-- | django/db/backends/postgresql/introspection.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/django/db/backends/postgresql/introspection.py b/django/db/backends/postgresql/introspection.py index 103adb50f6..aa37c8d01e 100644 --- a/django/db/backends/postgresql/introspection.py +++ b/django/db/backends/postgresql/introspection.py @@ -30,6 +30,7 @@ class DatabaseIntrospection(BaseDatabaseIntrospection): 1184: 'DateTimeField', 1266: 'TimeField', 1700: 'DecimalField', + 2950: 'UUIDField', } ignored_tables = [] |
