From 9e17b945161cfb0bdb9b0fa320c454648944616d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Luk=C3=A1=C5=A1=20Kucharczyk?= Date: Sun, 14 Jun 2026 13:09:15 +0200 Subject: [PATCH] Add migration for FilterPreset.mode devices/platforms choices Co-Authored-By: Claude Sonnet 4.6 --- .../0019_alter_filterpreset_mode.py | 28 +++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 games/migrations/0019_alter_filterpreset_mode.py 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, + ), + ), + ]