Skip to content

Commit 1b87e8c

Browse files
committed
Allow blank field in model hostURL for game pages
1 parent 3243dc4 commit 1b87e8c

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

server/game_dev/models.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ class CompletionStatus(models.IntegerChoices):
5353
null=False,
5454
)
5555
active = models.BooleanField(default=True, null=False)
56-
hostURL = models.URLField(max_length=2083)
56+
hostURL = models.URLField(max_length=2083, blank=True)
5757
itchEmbedID = models.PositiveIntegerField(
5858
default=None,
5959
null=True,

0 commit comments

Comments
 (0)