[migrations] Catch up after tag name changes

This commit is contained in:
2026-05-01 16:48:05 -04:00
parent de733d5893
commit df2108807d
17 changed files with 486 additions and 0 deletions

View File

@ -0,0 +1,26 @@
# 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"),
("videogames", "0014_videogame_tags"),
]
operations = [
migrations.AlterField(
model_name="videogame",
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",
),
),
]