attach favorites to logged in user

This commit is contained in:
cwilvx
2024-05-25 15:12:44 +03:00
parent 300c8eb30b
commit 0b8a5e92f5
14 changed files with 128 additions and 38 deletions
+2 -1
View File
@@ -58,7 +58,8 @@ def apply_migrations():
try:
migration.migrate()
log.info("Applied migration: %s", migration.__name__)
except:
except Exception as e:
log.error("Failed to run migration: %s", migration.__name__)
log.error(e)
MigrationManager.set_index(len(all_migrations))