File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments