Add save game data for video game scrobbles

This commit is contained in:
2023-04-02 22:43:58 -04:00
parent f04f8b04c0
commit 597ac2c7b8
2 changed files with 25 additions and 0 deletions

View File

@ -446,6 +446,9 @@ class Scrobble(TimeStampedModel):
# Fields for keeping track long content like books and games
book_pages_read = models.IntegerField(**BNULL)
videogame_save_data = models.FileField(
upload_to="scrobbles/videogame_save_data/", **BNULL
)
long_play_seconds = models.BigIntegerField(**BNULL)
long_play_complete = models.BooleanField(**BNULL)