Skip to content

Commit 6f5fcfa

Browse files
Remove delete schema property statements in drop scripts
1 parent f803a2e commit 6f5fcfa

25 files changed

+0
-50
lines changed

modules/flowable-app-engine/src/main/resources/org/flowable/app/db/drop/flowable.db2.drop.app.sql

-2
Original file line numberDiff line numberDiff line change
@@ -8,5 +8,3 @@ alter table ACT_APP_APPDEF
88
drop table ACT_APP_APPDEF;
99
drop table ACT_APP_DEPLOYMENT_RESOURCE;
1010
drop table ACT_APP_DEPLOYMENT;
11-
12-
delete from ACT_GE_PROPERTY where NAME_ = 'app.schema.version';

modules/flowable-app-engine/src/main/resources/org/flowable/app/db/drop/flowable.h2.drop.app.sql

-2
Original file line numberDiff line numberDiff line change
@@ -5,5 +5,3 @@ drop table if exists ACT_APP_DEPLOYMENT cascade constraints;
55
drop index if exists ACT_IDX_APP_RSRC_DPL;
66
drop index if exists ACT_IDX_APP_DEF_DPLY;
77
drop index if exists ACT_IDX_APP_DEF_UNIQ;
8-
9-
delete from ACT_GE_PROPERTY where NAME_ = 'app.schema.version';

modules/flowable-app-engine/src/main/resources/org/flowable/app/db/drop/flowable.mssql.drop.app.sql

-2
Original file line numberDiff line numberDiff line change
@@ -6,5 +6,3 @@ if exists (select TABLE_NAME from INFORMATION_SCHEMA.TABLES where TABLE_NAME = '
66
if exists (select TABLE_NAME from INFORMATION_SCHEMA.TABLES where TABLE_NAME = 'ACT_APP_APPDEF') drop table ACT_APP_APPDEF;
77
if exists (select TABLE_NAME from INFORMATION_SCHEMA.TABLES where TABLE_NAME = 'ACT_APP_DEPLOYMENT_RESOURCE') drop table ACT_APP_DEPLOYMENT_RESOURCE;
88
if exists (select TABLE_NAME from INFORMATION_SCHEMA.TABLES where TABLE_NAME = 'ACT_APP_DEPLOYMENT') drop table ACT_APP_DEPLOYMENT;
9-
10-
delete from ACT_GE_PROPERTY where NAME_ = 'app.schema.version';

modules/flowable-app-engine/src/main/resources/org/flowable/app/db/drop/flowable.mysql.drop.app.sql

-2
Original file line numberDiff line numberDiff line change
@@ -8,5 +8,3 @@ alter table ACT_APP_APPDEF
88
drop table if exists ACT_APP_APPDEF;
99
drop table if exists ACT_APP_DEPLOYMENT_RESOURCE;
1010
drop table if exists ACT_APP_DEPLOYMENT;
11-
12-
delete from ACT_GE_PROPERTY where NAME_ = 'app.schema.version';

modules/flowable-app-engine/src/main/resources/org/flowable/app/db/drop/flowable.oracle.drop.app.sql

-2
Original file line numberDiff line numberDiff line change
@@ -8,5 +8,3 @@ alter table ACT_APP_APPDEF
88
drop table ACT_APP_APPDEF;
99
drop table ACT_APP_DEPLOYMENT_RESOURCE;
1010
drop table ACT_APP_DEPLOYMENT;
11-
12-
delete from ACT_GE_PROPERTY where NAME_ = 'app.schema.version';
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
11
drop table if exists ACT_APP_APPDEF cascade;
22
drop table if exists ACT_APP_DEPLOYMENT_RESOURCE cascade;
33
drop table if exists ACT_APP_DEPLOYMENT cascade;
4-
5-
delete from ACT_GE_PROPERTY where NAME_ = 'app.schema.version';

modules/flowable-cmmn-engine/src/main/resources/org/flowable/cmmn/db/drop/flowable.db2.drop.cmmn.sql

-2
Original file line numberDiff line numberDiff line change
@@ -36,5 +36,3 @@ drop table ACT_CMMN_RU_CASE_INST;
3636
drop table ACT_CMMN_CASEDEF;
3737
drop table ACT_CMMN_DEPLOYMENT_RESOURCE;
3838
drop table ACT_CMMN_DEPLOYMENT;
39-
40-
delete from ACT_GE_PROPERTY where NAME_ = 'cmmn.schema.version';

modules/flowable-cmmn-engine/src/main/resources/org/flowable/cmmn/db/drop/flowable.h2.drop.cmmn.sql

-2
Original file line numberDiff line numberDiff line change
@@ -25,5 +25,3 @@ drop index if exists ACT_IDX_CASE_INST_PARENT;
2525
drop index if exists ACT_IDX_CASE_INST_CASE_DEF;
2626
drop index if exists ACT_IDX_CASE_DEF_DPLY;
2727
drop index if exists ACT_IDX_CMMN_RSRC_DPL;
28-
29-
delete from ACT_GE_PROPERTY where NAME_ = 'cmmn.schema.version';

modules/flowable-cmmn-engine/src/main/resources/org/flowable/cmmn/db/drop/flowable.hsql.drop.cmmn.sql

-2
Original file line numberDiff line numberDiff line change
@@ -25,5 +25,3 @@ drop index if exists ACT_IDX_CASE_INST_PARENT;
2525
drop index if exists ACT_IDX_CASE_INST_CASE_DEF;
2626
drop index if exists ACT_IDX_CASE_DEF_DPLY;
2727
drop index if exists ACT_IDX_CMMN_RSRC_DPL;
28-
29-
delete from ACT_GE_PROPERTY where NAME_ = 'cmmn.schema.version';

modules/flowable-cmmn-engine/src/main/resources/org/flowable/cmmn/db/drop/flowable.mssql.drop.cmmn.sql

-2
Original file line numberDiff line numberDiff line change
@@ -36,5 +36,3 @@ if exists (select TABLE_NAME from INFORMATION_SCHEMA.TABLES where TABLE_NAME = '
3636
if exists (select TABLE_NAME from INFORMATION_SCHEMA.TABLES where TABLE_NAME = 'ACT_CMMN_CASEDEF') drop table ACT_CMMN_CASEDEF;
3737
if exists (select TABLE_NAME from INFORMATION_SCHEMA.TABLES where TABLE_NAME = 'ACT_CMMN_DEPLOYMENT_RESOURCE') drop table ACT_CMMN_DEPLOYMENT_RESOURCE;
3838
if exists (select TABLE_NAME from INFORMATION_SCHEMA.TABLES where TABLE_NAME = 'ACT_CMMN_DEPLOYMENT') drop table ACT_CMMN_DEPLOYMENT;
39-
40-
delete from ACT_GE_PROPERTY where NAME_ = 'cmmn.schema.version';

modules/flowable-cmmn-engine/src/main/resources/org/flowable/cmmn/db/drop/flowable.mysql.drop.cmmn.sql

-2
Original file line numberDiff line numberDiff line change
@@ -36,5 +36,3 @@ drop table if exists ACT_CMMN_RU_CASE_INST;
3636
drop table if exists ACT_CMMN_CASEDEF;
3737
drop table if exists ACT_CMMN_DEPLOYMENT_RESOURCE;
3838
drop table if exists ACT_CMMN_DEPLOYMENT;
39-
40-
delete from ACT_GE_PROPERTY where NAME_ = 'cmmn.schema.version';

modules/flowable-cmmn-engine/src/main/resources/org/flowable/cmmn/db/drop/flowable.oracle.drop.cmmn.sql

-2
Original file line numberDiff line numberDiff line change
@@ -36,5 +36,3 @@ drop table ACT_CMMN_RU_CASE_INST;
3636
drop table ACT_CMMN_CASEDEF;
3737
drop table ACT_CMMN_DEPLOYMENT_RESOURCE;
3838
drop table ACT_CMMN_DEPLOYMENT;
39-
40-
delete from ACT_GE_PROPERTY where NAME_ = 'cmmn.schema.version';

modules/flowable-cmmn-engine/src/main/resources/org/flowable/cmmn/db/drop/flowable.postgres.drop.cmmn.sql

-2
Original file line numberDiff line numberDiff line change
@@ -8,5 +8,3 @@ drop table ACT_CMMN_RU_CASE_INST cascade;
88
drop table ACT_CMMN_CASEDEF cascade;
99
drop table ACT_CMMN_DEPLOYMENT_RESOURCE cascade;
1010
drop table ACT_CMMN_DEPLOYMENT cascade;
11-
12-
delete from ACT_GE_PROPERTY where NAME_ = 'cmmn.schema.version';

modules/flowable-dmn-engine/src/main/resources/org/flowable/dmn/db/drop/flowable.db2.drop.dmn.sql

-2
Original file line numberDiff line numberDiff line change
@@ -5,5 +5,3 @@ drop table ACT_DMN_HI_DECISION_EXECUTION;
55
drop table ACT_DMN_DECISION;
66
drop table ACT_DMN_DEPLOYMENT_RESOURCE;
77
drop table ACT_DMN_DEPLOYMENT;
8-
9-
delete from ACT_GE_PROPERTY where NAME_ = 'dmn.schema.version';

modules/flowable-dmn-engine/src/main/resources/org/flowable/dmn/db/drop/flowable.h2.drop.dmn.sql

-2
Original file line numberDiff line numberDiff line change
@@ -5,5 +5,3 @@ drop table if exists ACT_DMN_DEPLOYMENT cascade constraints;
55

66
drop index if exists ACT_IDX_DMN_INSTANCE_ID;
77
drop index if exists ACT_IDX_DMN_DEC_UNIQ;
8-
9-
delete from ACT_GE_PROPERTY where NAME_ = 'dmn.schema.version';

modules/flowable-dmn-engine/src/main/resources/org/flowable/dmn/db/drop/flowable.mssql.drop.dmn.sql

-2
Original file line numberDiff line numberDiff line change
@@ -5,5 +5,3 @@ if exists (select TABLE_NAME from INFORMATION_SCHEMA.TABLES where TABLE_NAME = '
55
if exists (select TABLE_NAME from INFORMATION_SCHEMA.TABLES where TABLE_NAME = 'ACT_DMN_DECISION') drop table ACT_DMN_DECISION;
66
if exists (select TABLE_NAME from INFORMATION_SCHEMA.TABLES where TABLE_NAME = 'ACT_DMN_DEPLOYMENT_RESOURCE') drop table ACT_DMN_DEPLOYMENT_RESOURCE;
77
if exists (select TABLE_NAME from INFORMATION_SCHEMA.TABLES where TABLE_NAME = 'ACT_DMN_DEPLOYMENT') drop table ACT_DMN_DEPLOYMENT;
8-
9-
delete from ACT_GE_PROPERTY where NAME_ = 'dmn.schema.version';

modules/flowable-dmn-engine/src/main/resources/org/flowable/dmn/db/drop/flowable.mysql.drop.dmn.sql

-2
Original file line numberDiff line numberDiff line change
@@ -5,5 +5,3 @@ drop table if exists ACT_DMN_HI_DECISION_EXECUTION;
55
drop table if exists ACT_DMN_DECISION;
66
drop table if exists ACT_DMN_DEPLOYMENT_RESOURCE;
77
drop table if exists ACT_DMN_DEPLOYMENT;
8-
9-
delete from ACT_GE_PROPERTY where NAME_ = 'dmn.schema.version';

modules/flowable-dmn-engine/src/main/resources/org/flowable/dmn/db/drop/flowable.oracle.drop.dmn.sql

-2
Original file line numberDiff line numberDiff line change
@@ -5,5 +5,3 @@ drop table ACT_DMN_HI_DECISION_EXECUTION;
55
drop table ACT_DMN_DECISION;
66
drop table ACT_DMN_DEPLOYMENT_RESOURCE;
77
drop table ACT_DMN_DEPLOYMENT;
8-
9-
delete from ACT_GE_PROPERTY where NAME_ = 'dmn.schema.version';

modules/flowable-dmn-engine/src/main/resources/org/flowable/dmn/db/drop/flowable.postgres.drop.dmn.sql

-2
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,3 @@ drop table if exists ACT_DMN_HI_DECISION_EXECUTION cascade;
22
drop table if exists ACT_DMN_DECISION cascade;
33
drop table if exists ACT_DMN_DEPLOYMENT_RESOURCE cascade;
44
drop table if exists ACT_DMN_DEPLOYMENT cascade;
5-
6-
delete from ACT_GE_PROPERTY where NAME_ = 'dmn.schema.version';

modules/flowable-event-registry/src/main/resources/org/flowable/eventregistry/db/drop/flowable.db2.drop.eventregistry.sql

-2
Original file line numberDiff line numberDiff line change
@@ -5,5 +5,3 @@ drop table FLW_CHANNEL_DEFINITION;
55
drop table FLW_EVENT_DEFINITION;
66
drop table FLW_EVENT_RESOURCE;
77
drop table FLW_EVENT_DEPLOYMENT;
8-
9-
delete from ACT_GE_PROPERTY where NAME_ = 'eventregistry.schema.version';

modules/flowable-event-registry/src/main/resources/org/flowable/eventregistry/db/drop/flowable.h2.drop.eventregistry.sql

-2
Original file line numberDiff line numberDiff line change
@@ -5,5 +5,3 @@ drop table if exists FLW_CHANNEL_DEFINITION cascade constraints;
55
drop table if exists FLW_EVENT_DEFINITION cascade constraints;
66
drop table if exists FLW_EVENT_RESOURCE cascade constraints;
77
drop table if exists FLW_EVENT_DEPLOYMENT cascade constraints;
8-
9-
delete from ACT_GE_PROPERTY where NAME_ = 'eventregistry.schema.version';

modules/flowable-event-registry/src/main/resources/org/flowable/eventregistry/db/drop/flowable.mssql.drop.eventregistry.sql

-2
Original file line numberDiff line numberDiff line change
@@ -5,5 +5,3 @@ if exists (select TABLE_NAME from INFORMATION_SCHEMA.TABLES where TABLE_NAME = '
55
if exists (select TABLE_NAME from INFORMATION_SCHEMA.TABLES where TABLE_NAME = 'FLW_EVENT_DEFINITION') drop table FLW_EVENT_DEFINITION;
66
if exists (select TABLE_NAME from INFORMATION_SCHEMA.TABLES where TABLE_NAME = 'FLW_EVENT_RESOURCE') drop table FLW_EVENT_RESOURCE;
77
if exists (select TABLE_NAME from INFORMATION_SCHEMA.TABLES where TABLE_NAME = 'FLW_EVENT_DEPLOYMENT') drop table FLW_EVENT_DEPLOYMENT;
8-
9-
delete from ACT_GE_PROPERTY where NAME_ = 'eventregistry.schema.version';

modules/flowable-event-registry/src/main/resources/org/flowable/eventregistry/db/drop/flowable.mysql.drop.eventregistry.sql

-2
Original file line numberDiff line numberDiff line change
@@ -5,5 +5,3 @@ drop table if exists FLW_CHANNEL_DEFINITION;
55
drop table if exists FLW_EVENT_DEFINITION;
66
drop table if exists FLW_EVENT_RESOURCE;
77
drop table if exists FLW_EVENT_DEPLOYMENT;
8-
9-
delete from ACT_GE_PROPERTY where NAME_ = 'eventregistry.schema.version';

modules/flowable-event-registry/src/main/resources/org/flowable/eventregistry/db/drop/flowable.oracle.drop.eventregistry.sql

-2
Original file line numberDiff line numberDiff line change
@@ -5,5 +5,3 @@ drop table FLW_CHANNEL_DEFINITION;
55
drop table FLW_EVENT_DEFINITION;
66
drop table FLW_EVENT_RESOURCE;
77
drop table FLW_EVENT_DEPLOYMENT;
8-
9-
delete from ACT_GE_PROPERTY where NAME_ = 'eventregistry.schema.version';

modules/flowable-event-registry/src/main/resources/org/flowable/eventregistry/db/drop/flowable.postgres.drop.eventregistry.sql

-2
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,3 @@ drop table if exists FLW_CHANNEL_DEFINITION cascade;
22
drop table if exists FLW_EVENT_DEFINITION cascade;
33
drop table if exists FLW_EVENT_RESOURCE cascade;
44
drop table if exists FLW_EVENT_DEPLOYMENT cascade;
5-
6-
delete from ACT_GE_PROPERTY where NAME_ = 'eventregistry.schema.version';

0 commit comments

Comments
 (0)