You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@syncope.apache.org by il...@apache.org on 2019/10/15 07:30:57 UTC

[syncope] branch master updated: Fixes Quartz definitions for H2

This is an automated email from the ASF dual-hosted git repository.

ilgrosso pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/syncope.git


The following commit(s) were added to refs/heads/master by this push:
     new bae099d  Fixes Quartz definitions for H2
bae099d is described below

commit bae099d650213bdafaa832966738461369ba965f
Author: Francesco Chicchiriccò <il...@apache.org>
AuthorDate: Tue Oct 15 09:30:26 2019 +0200

    Fixes Quartz definitions for H2
---
 core/provisioning-java/src/main/resources/quartz/tables_h2.sql | 5 ++---
 1 file changed, 2 insertions(+), 3 deletions(-)

diff --git a/core/provisioning-java/src/main/resources/quartz/tables_h2.sql b/core/provisioning-java/src/main/resources/quartz/tables_h2.sql
index e798223..50785b4 100644
--- a/core/provisioning-java/src/main/resources/quartz/tables_h2.sql
+++ b/core/provisioning-java/src/main/resources/quartz/tables_h2.sql
@@ -94,8 +94,7 @@ CREATE TABLE QRTZ_SIMPLE_TRIGGERS (
   TIMES_TRIGGERED BIGINT NOT NULL
 );
 
-CREATE TABLE qrtz_simprop_triggers
-  (          
+CREATE TABLE QRTZ_SIMPROP_TRIGGERS (          
     SCHED_NAME VARCHAR(120) NOT NULL,
     TRIGGER_NAME VARCHAR(200) NOT NULL,
     TRIGGER_GROUP VARCHAR(200) NOT NULL,
@@ -109,7 +108,7 @@ CREATE TABLE qrtz_simprop_triggers
     DEC_PROP_1 NUMERIC(13,4) NULL,
     DEC_PROP_2 NUMERIC(13,4) NULL,
     BOOL_PROP_1 BOOLEAN NULL,
-    BOOL_PROP_2 BOOLEAN NULL,
+    BOOL_PROP_2 BOOLEAN NULL
 );
 
 CREATE TABLE QRTZ_BLOB_TRIGGERS (