From 3b798170a9bea27f00517512b89b945198231572 Mon Sep 17 00:00:00 2001 From: Tom Baeyens Date: Thu, 22 Nov 2012 17:01:17 +0100 Subject: [PATCH] ACT-1333 fixing upgrade script --- .../org/activiti/db/clean/clean.postgres.sql | 33 ------------------- 1 file changed, 33 deletions(-) delete mode 100644 modules/activiti-upgrade/src/test/resources/org/activiti/db/clean/clean.postgres.sql diff --git a/modules/activiti-upgrade/src/test/resources/org/activiti/db/clean/clean.postgres.sql b/modules/activiti-upgrade/src/test/resources/org/activiti/db/clean/clean.postgres.sql deleted file mode 100644 index a17431b148..0000000000 --- a/modules/activiti-upgrade/src/test/resources/org/activiti/db/clean/clean.postgres.sql +++ /dev/null @@ -1,33 +0,0 @@ -SELECT -  execute($$ -      drop table act_ge_property cascade -  $$) -WHERE -  exists -  ( -    SELECT * -    FROM information_schema.tables -    WHERE table_name = 'act_ge_property' -  ); - -drop table if exists ACT_GE_BYTEARRAY cascade; -drop table if exists ACT_RE_MODEL cascade; -drop table if exists ACT_RE_DEPLOYMENT cascade; -drop table if exists ACT_RE_PROCDEF cascade; -drop table if exists ACT_RU_IDENTITYLINK cascade; -drop table if exists ACT_RU_VARIABLE cascade; -drop table if exists ACT_RU_TASK cascade; -drop table if exists ACT_RU_EXECUTION cascade; -drop table if exists ACT_RU_JOB cascade; -drop table if exists ACT_RU_EVENT_SUBSCR cascade; -drop table if exists ACT_HI_PROCINST cascade; -drop table if exists ACT_HI_ACTINST cascade; -drop table if exists ACT_HI_VARINST cascade; -drop table if exists ACT_HI_TASKINST cascade; -drop table if exists ACT_HI_DETAIL cascade; -drop table if exists ACT_HI_COMMENT cascade; -drop table if exists ACT_HI_ATTACHMENT cascade; -drop table if exists ACT_ID_INFO cascade; -drop table if exists ACT_ID_MEMBERSHIP cascade; -drop table if exists ACT_ID_GROUP cascade; -drop table if exists ACT_ID_USER cascade; -- GitLab