1
Fork 0
mirror of https://github.com/Steffo99/sophon.git synced 2024-12-22 06:44:21 +00:00

🔧 Fix nullable fields for projects

This commit is contained in:
Steffo 2021-09-01 17:28:55 +02:00
parent 0695ad6b26
commit 310d7d0393

View file

@ -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(