diff --git a/pyproject.toml b/pyproject.toml index f40d51c..5bcabe4 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "vrobbler" -version = "0.11.12" +version = "0.15.0" description = "" authors = ["Colin Powell "] diff --git a/vrobbler/apps/videos/migrations/0017_alter_video_video_type.py b/vrobbler/apps/videos/migrations/0017_alter_video_video_type.py new file mode 100644 index 0000000..4d6fc82 --- /dev/null +++ b/vrobbler/apps/videos/migrations/0017_alter_video_video_type.py @@ -0,0 +1,27 @@ +# Generated by Django 4.2.15 on 2024-09-07 05:36 + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ("videos", "0016_video_tmdb_id"), + ] + + operations = [ + migrations.AlterField( + model_name="video", + name="video_type", + field=models.CharField( + choices=[ + ("U", "Unknown"), + ("E", "TV Episode"), + ("M", "Movie"), + ("S", "Skate Video"), + ], + default="U", + max_length=1, + ), + ), + ]