diff --git a/games/migrations/0019_alter_filterpreset_mode.py b/games/migrations/0019_alter_filterpreset_mode.py new file mode 100644 index 0000000..ca9530a --- /dev/null +++ b/games/migrations/0019_alter_filterpreset_mode.py @@ -0,0 +1,28 @@ +# Generated by Django 6.0.5 on 2026-06-13 18:48 + +from django.db import migrations, models + + +class Migration(migrations.Migration): + dependencies = [ + ("games", "0018_alter_session_timestamp_start"), + ] + + operations = [ + migrations.AlterField( + model_name="filterpreset", + name="mode", + field=models.CharField( + choices=[ + ("games", "Games"), + ("sessions", "Sessions"), + ("purchases", "Purchases"), + ("playevents", "Play Events"), + ("devices", "Devices"), + ("platforms", "Platforms"), + ], + default="games", + max_length=50, + ), + ), + ]