From 9d1cd01f694af9b07c50cdb11168d57ff3e811c9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lera=20Elvo=C3=A9?= Date: Fri, 4 Jul 2025 20:13:48 +0300 Subject: [PATCH] add migration to delete old lua-porom sessions --- app/migrations.py | 1 + 1 file changed, 1 insertion(+) diff --git a/app/migrations.py b/app/migrations.py index f3c26a1..352f0c0 100644 --- a/app/migrations.py +++ b/app/migrations.py @@ -8,6 +8,7 @@ def migrate_old_avatars(): # format: [str|tuple(str, any...)|callable] MIGRATIONS = [ migrate_old_avatars, + 'DELETE FROM sessions', # delete old lua porom sessions ] def run_migrations():