[podcasts] Fix name for Episode model to PodcastEpisode

This commit is contained in:
2024-02-10 13:57:42 -05:00
parent 033e3c3b35
commit bfdf73d4c0
8 changed files with 65 additions and 21 deletions

View File

@ -0,0 +1,32 @@
# Generated by Django 4.2.9 on 2024-02-10 18:54
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
("scrobbles", "0047_scrobble_book_koreader_hash"),
]
operations = [
migrations.AlterField(
model_name="scrobble",
name="media_type",
field=models.CharField(
choices=[
("Video", "Video"),
("Track", "Track"),
("PodcastEpisode", "Podcast episode"),
("SportEvent", "Sport event"),
("Book", "Book"),
("VideoGame", "Video game"),
("BoardGame", "Board game"),
("GeoLocation", "GeoLocation"),
("WebPage", "Web Page"),
],
default="Video",
max_length=14,
),
),
]