From 671eb2b57ead89c7e5e3034c7ef0e8792fa9446f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lo=C3=AFc=20Mathieu?= Date: Mon, 3 Feb 2025 17:29:29 +0100 Subject: [PATCH] feat(jdbc-*): delete subflow_executions table Fixes #6831 --- .../resources/migrations/h2/V1_30__delete_subflow_executions.sql | 1 + .../migrations/mysql/V1_30__delete_subflow_executions.sql | 1 + .../migrations/postgres/V1_30__delete_subflow_executions.sql | 1 + 3 files changed, 3 insertions(+) create mode 100644 jdbc-h2/src/main/resources/migrations/h2/V1_30__delete_subflow_executions.sql create mode 100644 jdbc-mysql/src/main/resources/migrations/mysql/V1_30__delete_subflow_executions.sql create mode 100644 jdbc-postgres/src/main/resources/migrations/postgres/V1_30__delete_subflow_executions.sql diff --git a/jdbc-h2/src/main/resources/migrations/h2/V1_30__delete_subflow_executions.sql b/jdbc-h2/src/main/resources/migrations/h2/V1_30__delete_subflow_executions.sql new file mode 100644 index 00000000000..d48c556b634 --- /dev/null +++ b/jdbc-h2/src/main/resources/migrations/h2/V1_30__delete_subflow_executions.sql @@ -0,0 +1 @@ +DROP TABLE IF EXISTS subflow_executions; \ No newline at end of file diff --git a/jdbc-mysql/src/main/resources/migrations/mysql/V1_30__delete_subflow_executions.sql b/jdbc-mysql/src/main/resources/migrations/mysql/V1_30__delete_subflow_executions.sql new file mode 100644 index 00000000000..d48c556b634 --- /dev/null +++ b/jdbc-mysql/src/main/resources/migrations/mysql/V1_30__delete_subflow_executions.sql @@ -0,0 +1 @@ +DROP TABLE IF EXISTS subflow_executions; \ No newline at end of file diff --git a/jdbc-postgres/src/main/resources/migrations/postgres/V1_30__delete_subflow_executions.sql b/jdbc-postgres/src/main/resources/migrations/postgres/V1_30__delete_subflow_executions.sql new file mode 100644 index 00000000000..d48c556b634 --- /dev/null +++ b/jdbc-postgres/src/main/resources/migrations/postgres/V1_30__delete_subflow_executions.sql @@ -0,0 +1 @@ +DROP TABLE IF EXISTS subflow_executions; \ No newline at end of file