feat: add 'missing_from_fs' property to various schemas and update related logic for better tracking of missing files

This commit is contained in:
zurdi
2025-06-12 22:18:06 +00:00
parent 2e76e4d144
commit 8370b79a83
30 changed files with 84 additions and 65 deletions

View File

@@ -90,7 +90,7 @@ class DBSavesHandler(DBBaseHandler):
Save.file_name.not_in(saves_to_keep),
)
)
.values(**{"missing": True})
.values(**{"missing_from_fs": True})
.execution_options(synchronize_session="evaluate")
)