Allow primary location to be blank
parent
a7b2413136
commit
beea98e006
|
@ -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
|
||||
"""
|
||||
|
|
Loading…
Reference in New Issue