Allow primary location to be blank

doc_update
Joey Hines 2020-10-10 12:06:10 -05:00
parent a7b2413136
commit beea98e006
1 changed files with 1 additions and 1 deletions

View File

@ -83,7 +83,7 @@ class Player(models.Model):
Discord UUID
"""
primary_location = models.OneToOneField("Location", on_delete=models.DO_NOTHING, null=True)
primary_location = models.OneToOneField("Location", on_delete=models.DO_NOTHING, blank=True, null=True)
"""
User's primary location
"""