From f21650505c884befd5896b25412517004260f7df Mon Sep 17 00:00:00 2001 From: Colin Powell Date: Mon, 17 Apr 2023 18:46:32 -0400 Subject: [PATCH] Add board game media type --- vrobbler/apps/scrobbles/models.py | 1 + 1 file changed, 1 insertion(+) diff --git a/vrobbler/apps/scrobbles/models.py b/vrobbler/apps/scrobbles/models.py index 756af0d..8b32c12 100644 --- a/vrobbler/apps/scrobbles/models.py +++ b/vrobbler/apps/scrobbles/models.py @@ -421,6 +421,7 @@ class Scrobble(TimeStampedModel): SPORT_EVENT = "SportEvent", "Sport event" BOOK = "Book", "Book" VIDEO_GAME = "VideoGame", "Video game" + BOARD_GAME = "BoardGame", "Board game" uuid = models.UUIDField(editable=False, **BNULL) video = models.ForeignKey(Video, on_delete=models.DO_NOTHING, **BNULL)