Skip to content

Commit

Permalink
feat(engine): Version migration db changes
Browse files Browse the repository at this point in the history
related to camunda#4205
  • Loading branch information
punitdarira committed Sep 12, 2024
1 parent a7d0492 commit 7059a33
Show file tree
Hide file tree
Showing 7 changed files with 22 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -21,3 +21,7 @@ values ('1100', CURRENT_TIMESTAMP, '7.22.0');
alter table ACT_RU_TASK add column TASK_STATE_ varchar(64);

alter table ACT_HI_TASKINST add column TASK_STATE_ varchar(64);


alter table ACT_HI_PROCINST add RESTARTED_PROC_INST_ID_ varchar(64);
create index ACT_IDX_HI_PRO_RST_PRO_INST_ID on ACT_HI_PROCINST(RESTARTED_PROC_INST_ID_);
Original file line number Diff line number Diff line change
Expand Up @@ -21,3 +21,6 @@ values ('1100', CURRENT_TIMESTAMP, '7.22.0');
alter table ACT_RU_TASK add column TASK_STATE_ varchar(64);

alter table ACT_HI_TASKINST add column TASK_STATE_ varchar(64);

alter table ACT_HI_PROCINST add RESTARTED_PROC_INST_ID_ varchar(64);
create index ACT_IDX_HI_PRO_RST_PRO_INST_ID on ACT_HI_PROCINST(RESTARTED_PROC_INST_ID_);
Original file line number Diff line number Diff line change
Expand Up @@ -21,3 +21,6 @@ values ('1100', CURRENT_TIMESTAMP, '7.22.0');
alter table ACT_RU_TASK add column TASK_STATE_ varchar(64);

alter table ACT_HI_TASKINST add column TASK_STATE_ varchar(64);

alter table ACT_HI_PROCINST add RESTARTED_PROC_INST_ID_ varchar(64);
create index ACT_IDX_HI_PRO_RST_PRO_INST_ID on ACT_HI_PROCINST(RESTARTED_PROC_INST_ID_);
Original file line number Diff line number Diff line change
Expand Up @@ -21,3 +21,6 @@ values ('1100', CURRENT_TIMESTAMP, '7.22.0');
alter table ACT_RU_TASK add TASK_STATE_ nvarchar(64);

alter table ACT_HI_TASKINST add TASK_STATE_ nvarchar(64);

alter table ACT_HI_PROCINST add RESTARTED_PROC_INST_ID_ nvarchar(64);
create index ACT_IDX_HI_PRO_RST_PRO_INST_ID on ACT_HI_PROCINST(RESTARTED_PROC_INST_ID_);
Original file line number Diff line number Diff line change
Expand Up @@ -21,3 +21,6 @@ values ('1100', CURRENT_TIMESTAMP, '7.22.0');
alter table ACT_RU_TASK add column TASK_STATE_ varchar(64);

alter table ACT_HI_TASKINST add column TASK_STATE_ varchar(64);

alter table ACT_HI_PROCINST add RESTARTED_PROC_INST_ID_ varchar(64);
create index ACT_IDX_HI_PRO_RST_PRO_INST_ID on ACT_HI_PROCINST(RESTARTED_PROC_INST_ID_);
Original file line number Diff line number Diff line change
Expand Up @@ -21,3 +21,6 @@ values ('1100', CURRENT_TIMESTAMP, '7.22.0');
alter table ACT_RU_TASK add TASK_STATE_ NVARCHAR2(64);

alter table ACT_HI_TASKINST add TASK_STATE_ NVARCHAR2(64);

alter table ACT_HI_PROCINST add RESTARTED_PROC_INST_ID_ NVARCHAR2(64);
create index ACT_IDX_HI_PRO_RST_PRO_INST_ID on ACT_HI_PROCINST(RESTARTED_PROC_INST_ID_);
Original file line number Diff line number Diff line change
Expand Up @@ -21,3 +21,6 @@ values ('1100', CURRENT_TIMESTAMP, '7.22.0');
alter table ACT_RU_TASK add column TASK_STATE_ varchar(64);

alter table ACT_HI_TASKINST add column TASK_STATE_ varchar(64);

alter table ACT_HI_PROCINST add RESTARTED_PROC_INST_ID_ varchar(64);
create index ACT_IDX_HI_PRO_RST_PRO_INST_ID on ACT_HI_PROCINST(RESTARTED_PROC_INST_ID_);

0 comments on commit 7059a33

Please sign in to comment.