fix(executions): truncate the execution_running table as in 0.24 there was an issue in the purge

This table contains executions for flows that have a concurrency that are currently running.
It has been added in 0.24 but in that release there was a bug that may prevent some records to being correctly removed from this table.
To fix that, we truncate it once.
This commit is contained in:
Loïc Mathieu
2025-09-15 15:59:06 +02:00
parent 1791127acb
commit 617daa79db
3 changed files with 6 additions and 0 deletions

View File

@@ -0,0 +1,2 @@
-- We must truncate the table as in 0.24 there was a bug that lead to records not purged in this table
truncate table execution_running;