Skip to content

Commit 6afdb67

Browse files
fix migration files
1 parent 64f8cc1 commit 6afdb67

1 file changed

Lines changed: 7 additions & 0 deletions

File tree

openaev-api/src/main/java/io/openaev/migration/V5_14__Rename_Execution_Statuses.java

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,13 @@ public void migrate(Context context) throws Exception {
3131
SET execution_status = 'EXECUTED'
3232
WHERE execution_status = 'SUCCESS';
3333
""");
34+
35+
statement.execute(
36+
"""
37+
UPDATE execution_traces
38+
SET execution_status = 'EXECUTED_WITH_CLEANUP_FAILURE'
39+
WHERE execution_status = 'SUCCESS_WITH_CLEANUP_FAIL'
40+
""");
3441
}
3542
}
3643
}

0 commit comments

Comments
 (0)