Remove blank/null option and add max length to Suborg

This commit is contained in:
Erin 2024-06-21 09:39:12 -07:00
parent c220a8a9ac
commit 53991c127c
No known key found for this signature in database
GPG key ID: 1CAD275313C62460

View file

@ -8,9 +8,8 @@ class Suborganization(TimeStampedModel):
"""
name = models.CharField(
null=True,
blank=True,
unique=True,
max_length=1000,
help_text="Suborganization",
)