# Generated by Django 4.2.29 on 2026-05-01 15:49 from django.db import migrations import taggit.managers class Migration(migrations.Migration): dependencies = [ ("scrobbles", "0075_add_channel_scrobble"), ("boardgames", "0014_boardgame_tags"), ] operations = [ migrations.AlterField( model_name="boardgame", name="genre", field=taggit.managers.TaggableManager( blank=True, help_text="A comma-separated list of tags.", through="scrobbles.ObjectWithGenres", to="scrobbles.Genre", verbose_name="Genre", ), ), ]