[scrobbles] Rename tag fields
All checks were successful
build & deploy / test (push) Successful in 2m8s
build & deploy / deploy (push) Successful in 25s

This commit is contained in:
2026-04-30 17:37:21 -04:00
parent f486b1614b
commit acf0c342bf
6 changed files with 9 additions and 9 deletions

View File

@ -57,7 +57,7 @@ class Channel(ScrobblableMixin):
)
youtube_id = models.CharField(max_length=255, **BNULL)
twitch_id = models.CharField(max_length=255, **BNULL)
genre = TaggableManager(through=ObjectWithGenres)
genre = TaggableManager(through=ObjectWithGenres, blank=True, verbose_name="Genre")
class Meta:
verbose_name_plural = "channels"
@ -163,7 +163,7 @@ class Series(TimeStampedModel):
)
preferred_source = models.CharField(max_length=100, **BNULL)
genre = TaggableManager(through=ObjectWithGenres)
genre = TaggableManager(through=ObjectWithGenres, blank=True, verbose_name="Genre")
class Meta:
verbose_name_plural = "series"