27 lines
686 B
Python
27 lines
686 B
Python
# 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"),
|
|
("bricksets", "0004_brickset_tags"),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AlterField(
|
|
model_name="brickset",
|
|
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",
|
|
),
|
|
),
|
|
]
|