TSK-1417: fix update scripts postgres

This commit is contained in:
Joerg Heffner 2020-10-19 15:43:44 +02:00 committed by gitgoodjhe
parent 85c84458e6
commit a0c092b3b9
2 changed files with 2 additions and 2 deletions

View File

@ -1,6 +1,6 @@
-- this script updates the tables TASKANA_SCHEMA_VERSION and HISTORY_EVENTS.
SET search_path %schemaName%;
SET search_path = %schemaName%;
INSERT INTO TASKANA_SCHEMA_VERSION (VERSION, CREATED) VALUES ('3.0.0', CURRENT_TIMESTAMP);

View File

@ -1,6 +1,6 @@
-- this script updates the tables TASKANA_SCHEMA_VERSION and HISTORY_EVENTS.
SET search_path %schemaName%;
SET search_path = %schemaName%;
INSERT INTO TASKANA_SCHEMA_VERSION (VERSION, CREATED) VALUES ('4.0.0', CURRENT_TIMESTAMP);