fix: stored procedure and database cleanup fix (also fixes file copying)
All checks were successful
Update changelog / changelog (push) Successful in 26s

This commit is contained in:
2026-01-27 07:52:20 +01:00
parent 17b8bafccd
commit 6a92451776
3 changed files with 18 additions and 10 deletions

View File

@@ -13,7 +13,7 @@ public partial class _00000000000000_StoredProcedure : Migration
AS $$
BEGIN
DELETE FROM "Songs"
WHERE "State" = 0;
WHERE "State" = 1;
COMMIT;
END;