Skip to content

Commit f803a2e

Browse files
Add schema property delete to app engine sql files
1 parent e3179f1 commit f803a2e

File tree

6 files changed

+12
-0
lines changed

6 files changed

+12
-0
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,3 +8,5 @@ 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,3 +5,5 @@ 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,3 +6,5 @@ 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,3 +8,5 @@ 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,3 +8,5 @@ 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,3 +1,5 @@
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';

0 commit comments

Comments
 (0)