From 91cfc39cb67929249b332e79d01916376fbc26c1 Mon Sep 17 00:00:00 2001 From: Yohan Boniface Date: Thu, 16 Sep 2021 12:15:18 +0200 Subject: [PATCH] Make Django with DEFAULT_AUTO_FIELD setting --- umap/settings/base.py | 1 + 1 file changed, 1 insertion(+) diff --git a/umap/settings/base.py b/umap/settings/base.py index bb1b7591..741da560 100644 --- a/umap/settings/base.py +++ b/umap/settings/base.py @@ -101,6 +101,7 @@ INSTALLED_APPS = ( 'social_django', 'agnocomplete', ) +DEFAULT_AUTO_FIELD = 'django.db.models.AutoField' # ============================================================================= # Calculation of directories relative to the project module location