From cdfc6c5a90b522da93b0a9d08f6308a8cc096720 Mon Sep 17 00:00:00 2001 From: jstastny-cz Date: Fri, 27 Sep 2024 14:58:57 +0200 Subject: [PATCH] [7.67.x-blue] Fix h2 quartz DDL drop statements order --- .../resources/db/ddl-scripts/h2/quartz_tables_drop_h2.sql | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/jbpm-db-scripts/src/main/resources/db/ddl-scripts/h2/quartz_tables_drop_h2.sql b/jbpm-db-scripts/src/main/resources/db/ddl-scripts/h2/quartz_tables_drop_h2.sql index 3b6c933e8b..528d159550 100644 --- a/jbpm-db-scripts/src/main/resources/db/ddl-scripts/h2/quartz_tables_drop_h2.sql +++ b/jbpm-db-scripts/src/main/resources/db/ddl-scripts/h2/quartz_tables_drop_h2.sql @@ -6,8 +6,8 @@ DROP TABLE IF EXISTS QRTZ_FIRED_TRIGGERS; DROP TABLE IF EXISTS QRTZ_PAUSED_TRIGGER_GRPS; DROP TABLE IF EXISTS QRTZ_SCHEDULER_STATE; DROP TABLE IF EXISTS QRTZ_LOCKS; -DROP TABLE IF EXISTS QRTZ_JOB_DETAILS; DROP TABLE IF EXISTS QRTZ_SIMPLE_TRIGGERS; DROP TABLE IF EXISTS QRTZ_SIMPROP_TRIGGERS; DROP TABLE IF EXISTS QRTZ_BLOB_TRIGGERS; -DROP TABLE IF EXISTS QRTZ_TRIGGERS; \ No newline at end of file +DROP TABLE IF EXISTS QRTZ_TRIGGERS; +DROP TABLE IF EXISTS QRTZ_JOB_DETAILS; \ No newline at end of file