From ec49773731f38d318ab4e512c25ee611a62a7558 Mon Sep 17 00:00:00 2001 From: LeandroJatai Date: Mon, 15 Jul 2024 23:33:48 -0300 Subject: [PATCH] fix: add default auto field --- sapl/settings.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/sapl/settings.py b/sapl/settings.py index 42299dd52..f112cd62d 100644 --- a/sapl/settings.py +++ b/sapl/settings.py @@ -235,6 +235,8 @@ DATABASES = { ) } +DEFAULT_AUTO_FIELD = 'django.db.models.AutoField' + IMAGE_CROPPING_JQUERY_URL = None THUMBNAIL_PROCESSORS = ( 'image_cropping.thumbnail_processors.crop_corners',