Skip to content

Commit fcf4170

Browse files
committed
Renamed: itchGameEmbedID to itchGamePlayableID
1 parent b361cb7 commit fcf4170

1 file changed

Lines changed: 5 additions & 6 deletions

File tree

server/game_dev/models.py

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -60,15 +60,11 @@ class CompletionStatus(models.IntegerChoices):
6060
blank=True,
6161
help_text="If game is stored on itch.io, please enter the itchEmbedID, i.e., 1000200"
6262
)
63-
64-
thumbnail = models.ImageField(upload_to="games/", null=True)
65-
event = models.ForeignKey(Event, on_delete=models.SET_NULL, null=True, blank=True)
66-
67-
itchGameEmbedID = models.PositiveBigIntegerField(
63+
itchGamePlayableID = models.PositiveBigIntegerField(
6864
default=None,
6965
null=True,
7066
blank=True,
71-
help_text="If a game has a web demo stored on itch.io, please enter the embed ID"
67+
help_text="If a game is playable and has a web demo stored on itch.io, please enter the embed developer ID"
7268
)
7369

7470
itchGameWidth = models.PositiveBigIntegerField(
@@ -78,6 +74,9 @@ class CompletionStatus(models.IntegerChoices):
7874
default=0
7975
)
8076

77+
thumbnail = models.ImageField(upload_to="games/", null=True)
78+
event = models.ForeignKey(Event, on_delete=models.SET_NULL, null=True, blank=True)
79+
8180
def __str__(self):
8281
return str(self.name)
8382

0 commit comments

Comments
 (0)