[scrobbles] Add tagging from labels
All checks were successful
build & deploy / test (push) Successful in 1m45s
build & deploy / deploy (push) Successful in 21s

This commit is contained in:
2026-03-24 10:42:10 -04:00
parent 24c7c33ac2
commit 41bb52c551
2 changed files with 38 additions and 3 deletions

View File

@ -0,0 +1,26 @@
# Generated by Django 4.2.29 on 2026-03-24 14:14
from django.db import migrations
import taggit.managers
class Migration(migrations.Migration):
dependencies = [
("taggit", "0004_alter_taggeditem_content_type_alter_taggeditem_tag"),
("scrobbles", "0073_delete_chartrecord"),
]
operations = [
migrations.AddField(
model_name="scrobble",
name="tags",
field=taggit.managers.TaggableManager(
blank=True,
help_text="A comma-separated list of tags.",
through="taggit.TaggedItem",
to="taggit.Tag",
verbose_name="Tags",
),
),
]