add missing migrations

This commit is contained in:
FuzzyGrim
2026-02-03 22:38:30 +01:00
parent 546f7d3837
commit ba32320c1d
2 changed files with 68 additions and 0 deletions

View File

@@ -0,0 +1,34 @@
# Generated by Django 5.2.9 on 2026-02-03 21:36
from django.db import migrations, models
class Migration(migrations.Migration):
"""Migration to fix boardgame value."""
dependencies = [
("app", "0054_fix_movie_progress"),
]
operations = [
migrations.AlterField(
model_name="item",
name="media_type",
field=models.CharField(
choices=[
("tv", "TV Show"),
("season", "TV Season"),
("episode", "Episode"),
("movie", "Movie"),
("anime", "Anime"),
("manga", "Manga"),
("game", "Game"),
("book", "Book"),
("comic", "Comic"),
("boardgame", "Boardgame"),
],
default="movie",
max_length=10,
),
),
]

View File

@@ -0,0 +1,34 @@
# Generated by Django 5.2.9 on 2026-02-03 21:36
from django.db import migrations, models
class Migration(migrations.Migration):
"""Migration to fix boardgame value."""
dependencies = [
("users", "0044_user_progress_bar"),
]
operations = [
migrations.AlterField(
model_name="user",
name="last_search_type",
field=models.CharField(
choices=[
("tv", "TV Show"),
("season", "TV Season"),
("episode", "Episode"),
("movie", "Movie"),
("anime", "Anime"),
("manga", "Manga"),
("game", "Game"),
("book", "Book"),
("comic", "Comic"),
("boardgame", "Boardgame"),
],
default="tv",
max_length=10,
),
),
]