Files
vrobbler/vrobbler/apps/podcasts/migrations/0012_alter_episode_genre.py
2023-04-17 22:33:36 -04:00

27 lines
710 B
Python

# Generated by Django 4.1.7 on 2023-04-18 02:33
from django.db import migrations
import taggit.managers
class Migration(migrations.Migration):
dependencies = [
("scrobbles", "0040_alter_scrobble_media_type"),
("podcasts", "0011_rename_url_podcast_feed_url_and_more"),
]
operations = [
migrations.AlterField(
model_name="episode",
name="genre",
field=taggit.managers.TaggableManager(
blank=True,
help_text="A comma-separated list of tags.",
through="scrobbles.ObjectWithGenres",
to="scrobbles.Genre",
verbose_name="Tags",
),
),
]