From 310d7d0393b60f89b3c561bd8d3260069bf84b50 Mon Sep 17 00:00:00 2001 From: Stefano Pigozzi Date: Wed, 1 Sep 2021 17:28:55 +0200 Subject: [PATCH] =?UTF-8?q?=F0=9F=94=A7=20Fix=20nullable=20fields=20for=20?= =?UTF-8?q?projects?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- backend/sophon/projects/models.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/sophon/projects/models.py b/backend/sophon/projects/models.py index 831efd0..8df83b2 100644 --- a/backend/sophon/projects/models.py +++ b/backend/sophon/projects/models.py @@ -30,7 +30,7 @@ class ResearchProject(SophonGroupModel): description = models.TextField( "Description", help_text="A brief description of the project, to be displayed in the overview.", - blank=True, + blank=True, null=True, ) visibility = models.CharField(