diff options
| author | Magnus Hagander | 2021-11-07 14:11:43 +0000 |
|---|---|---|
| committer | Magnus Hagander | 2021-11-07 14:11:43 +0000 |
| commit | bc2c748ce9cd1abfda672dbc75e6ef8b83fb920e (patch) | |
| tree | 236f775a7668b539e4edb0e7aa6b674d5371eb47 /django/archives | |
| parent | 86d53500babb9fbed488505e4d5720562dfd301b (diff) | |
Add DEFAULT_AUTO_FIELD for Django 3.2
Diffstat (limited to 'django/archives')
| -rw-r--r-- | django/archives/settings.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/django/archives/settings.py b/django/archives/settings.py index 906d91b..bb97bb8 100644 --- a/django/archives/settings.py +++ b/django/archives/settings.py @@ -20,6 +20,8 @@ DATABASES = { } } +DEFAULT_AUTO_FIELD = 'django.db.models.AutoField' + # Local time zone for this installation. Choices can be found here: # http://en.wikipedia.org/wiki/List_of_tz_zones_by_name # although not all choices may be available on all operating systems. |
