Skip to content

Commit

Permalink
Add schema property delete to app engine sql files
Browse files Browse the repository at this point in the history
  • Loading branch information
tijsrademakers committed Aug 20, 2024
1 parent e3179f1 commit f803a2e
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -8,3 +8,5 @@ alter table ACT_APP_APPDEF
drop table ACT_APP_APPDEF;
drop table ACT_APP_DEPLOYMENT_RESOURCE;
drop table ACT_APP_DEPLOYMENT;

delete from ACT_GE_PROPERTY where NAME_ = 'app.schema.version';
Original file line number Diff line number Diff line change
Expand Up @@ -5,3 +5,5 @@ 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;

delete from ACT_GE_PROPERTY where NAME_ = 'app.schema.version';
Original file line number Diff line number Diff line change
Expand Up @@ -6,3 +6,5 @@ if exists (select TABLE_NAME from INFORMATION_SCHEMA.TABLES where TABLE_NAME = '
if exists (select TABLE_NAME from INFORMATION_SCHEMA.TABLES where TABLE_NAME = 'ACT_APP_APPDEF') drop table ACT_APP_APPDEF;
if exists (select TABLE_NAME from INFORMATION_SCHEMA.TABLES where TABLE_NAME = 'ACT_APP_DEPLOYMENT_RESOURCE') drop table ACT_APP_DEPLOYMENT_RESOURCE;
if exists (select TABLE_NAME from INFORMATION_SCHEMA.TABLES where TABLE_NAME = 'ACT_APP_DEPLOYMENT') drop table ACT_APP_DEPLOYMENT;

delete from ACT_GE_PROPERTY where NAME_ = 'app.schema.version';
Original file line number Diff line number Diff line change
Expand Up @@ -8,3 +8,5 @@ alter table ACT_APP_APPDEF
drop table if exists ACT_APP_APPDEF;
drop table if exists ACT_APP_DEPLOYMENT_RESOURCE;
drop table if exists ACT_APP_DEPLOYMENT;

delete from ACT_GE_PROPERTY where NAME_ = 'app.schema.version';
Original file line number Diff line number Diff line change
Expand Up @@ -8,3 +8,5 @@ alter table ACT_APP_APPDEF
drop table ACT_APP_APPDEF;
drop table ACT_APP_DEPLOYMENT_RESOURCE;
drop table ACT_APP_DEPLOYMENT;

delete from ACT_GE_PROPERTY where NAME_ = 'app.schema.version';
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
drop table if exists ACT_APP_APPDEF cascade;
drop table if exists ACT_APP_DEPLOYMENT_RESOURCE cascade;
drop table if exists ACT_APP_DEPLOYMENT cascade;

delete from ACT_GE_PROPERTY where NAME_ = 'app.schema.version';

0 comments on commit f803a2e

Please sign in to comment.