forked from flowable/flowable-engine
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
First drop tables then indices for H2
- Loading branch information
Showing
2 changed files
with
7 additions
and
7 deletions.
There are no files selected for viewing
8 changes: 4 additions & 4 deletions
8
.../flowable-app-engine/src/main/resources/org/flowable/app/db/drop/flowable.h2.drop.app.sql
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
drop index if exists ACT_IDX_APP_RSRC_DPL; | ||
drop index if exists ACT_IDX_APP_DEF_DPLY; | ||
drop index if exists ACT_IDX_APP_DEF_UNIQ; | ||
|
||
drop table if exists ACT_APP_APPDEF cascade constraints; | ||
drop table if exists ACT_APP_DEPLOYMENT_RESOURCE cascade constraints; | ||
drop table if exists ACT_APP_DEPLOYMENT cascade constraints; | ||
|
||
drop index if exists ACT_IDX_APP_RSRC_DPL; | ||
drop index if exists ACT_IDX_APP_DEF_DPLY; | ||
drop index if exists ACT_IDX_APP_DEF_UNIQ; |
6 changes: 3 additions & 3 deletions
6
.../flowable-dmn-engine/src/main/resources/org/flowable/dmn/db/drop/flowable.h2.drop.dmn.sql
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
drop index if exists ACT_IDX_DMN_INSTANCE_ID; | ||
drop index if exists ACT_IDX_DMN_DEC_UNIQ; | ||
|
||
drop table if exists ACT_DMN_HI_DECISION_EXECUTION cascade constraints; | ||
drop table if exists ACT_DMN_DECISION cascade constraints; | ||
drop table if exists ACT_DMN_DEPLOYMENT_RESOURCE cascade constraints; | ||
drop table if exists ACT_DMN_DEPLOYMENT cascade constraints; | ||
|
||
drop index if exists ACT_IDX_DMN_INSTANCE_ID; | ||
drop index if exists ACT_IDX_DMN_DEC_UNIQ; |