1
Fork 0
mirror of https://github.com/Steffo99/sophon.git synced 2024-10-16 23:17:26 +00:00

🔧 Fix nullable fields for core

This commit is contained in:
Steffo 2021-09-01 17:28:38 +02:00
parent f7144f1cd8
commit 0695ad6b26

View file

@ -236,14 +236,14 @@ class ResearchGroup(SophonGroupModel):
description = models.TextField(
"Description",
help_text="A brief description of what the group is about.",
blank=True,
blank=True, null=True,
)
members = models.ManyToManyField(
User,
help_text="The users who belong to this group.",
related_name="is_a_member_of",
blank=True,
blank=True, null=True,
)
owner = models.ForeignKey(