From fdc727983638eba76505ac25d0b0cdaf2e9ee2b6 Mon Sep 17 00:00:00 2001 From: j Date: Fri, 28 Jul 2023 14:59:13 +0200 Subject: [PATCH] fix auto field --- pandora/settings.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pandora/settings.py b/pandora/settings.py index eae5c942..52ac5fc3 100644 --- a/pandora/settings.py +++ b/pandora/settings.py @@ -190,7 +190,7 @@ CACHES = { } } -DEFAULT_AUTO_FIELD = "django.db.models.AutoField" +DEFAULT_AUTO_FIELD = "django.db.models.BigAutoField" AUTH_PROFILE_MODULE = 'user.UserProfile'