Skip to content

Commit

Permalink
Added index on task id for historic task log entry (flowable#3892)
Browse files Browse the repository at this point in the history
  • Loading branch information
WelschChristopher committed May 17, 2024
1 parent 270753a commit 7683479
Show file tree
Hide file tree
Showing 118 changed files with 128 additions and 101 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,6 @@ alter table FLW_RU_BATCH_PART
foreign key (BATCH_ID_)
references FLW_RU_BATCH (ID_);

insert into ACT_GE_PROPERTY values ('batch.schema.version', '7.0.1.1', 1);
insert into ACT_GE_PROPERTY values ('batch.schema.version', '7.1.0.0', 1);

-- force-commit
Original file line number Diff line number Diff line change
Expand Up @@ -37,4 +37,4 @@ alter table FLW_RU_BATCH_PART
foreign key (BATCH_ID_)
references FLW_RU_BATCH (ID_);

insert into ACT_GE_PROPERTY values ('batch.schema.version', '7.0.1.1', 1);
insert into ACT_GE_PROPERTY values ('batch.schema.version', '7.1.0.0', 1);
Original file line number Diff line number Diff line change
Expand Up @@ -37,4 +37,4 @@ alter table FLW_RU_BATCH_PART
foreign key (BATCH_ID_)
references FLW_RU_BATCH (ID_);

insert into ACT_GE_PROPERTY values ('batch.schema.version', '7.0.1.1', 1);
insert into ACT_GE_PROPERTY values ('batch.schema.version', '7.1.0.0', 1);
Original file line number Diff line number Diff line change
Expand Up @@ -37,4 +37,4 @@ alter table FLW_RU_BATCH_PART
foreign key (BATCH_ID_)
references FLW_RU_BATCH (ID_);

insert into ACT_GE_PROPERTY values ('batch.schema.version', '7.0.1.1', 1);
insert into ACT_GE_PROPERTY values ('batch.schema.version', '7.1.0.0', 1);
Original file line number Diff line number Diff line change
Expand Up @@ -37,4 +37,4 @@ alter table FLW_RU_BATCH_PART
foreign key (BATCH_ID_)
references FLW_RU_BATCH (ID_);

insert into ACT_GE_PROPERTY values ('batch.schema.version', '7.0.1.1', 1);
insert into ACT_GE_PROPERTY values ('batch.schema.version', '7.1.0.0', 1);
Original file line number Diff line number Diff line change
Expand Up @@ -37,4 +37,4 @@ alter table FLW_RU_BATCH_PART
foreign key (BATCH_ID_)
references FLW_RU_BATCH (ID_);

insert into ACT_GE_PROPERTY values ('batch.schema.version', '7.0.1.1', 1);
insert into ACT_GE_PROPERTY values ('batch.schema.version', '7.1.0.0', 1);
Original file line number Diff line number Diff line change
Expand Up @@ -37,4 +37,4 @@ alter table FLW_RU_BATCH_PART
foreign key (BATCH_ID_)
references FLW_RU_BATCH (ID_);

insert into ACT_GE_PROPERTY values ('batch.schema.version', '7.0.1.1', 1);
insert into ACT_GE_PROPERTY values ('batch.schema.version', '7.1.0.0', 1);
Original file line number Diff line number Diff line change
Expand Up @@ -37,4 +37,4 @@ alter table FLW_RU_BATCH_PART
foreign key (BATCH_ID_)
references FLW_RU_BATCH (ID_);

insert into ACT_GE_PROPERTY values ('batch.schema.version', '7.0.1.1', 1);
insert into ACT_GE_PROPERTY values ('batch.schema.version', '7.1.0.0', 1);
Original file line number Diff line number Diff line change
Expand Up @@ -37,4 +37,4 @@ alter table FLW_RU_BATCH_PART
foreign key (BATCH_ID_)
references FLW_RU_BATCH (ID_);

insert into ACT_GE_PROPERTY values ('batch.schema.version', '7.0.1.1', 1);
insert into ACT_GE_PROPERTY values ('batch.schema.version', '7.1.0.0', 1);
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
update ACT_GE_PROPERTY set VALUE_ = '7.1.0.0' where NAME_ = 'batch.schema.version';
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
*/
public class FlowableVersions {

public static final String CURRENT_VERSION = "7.0.1.1"; // Note the extra .x at the end. To cater for snapshot releases with different database changes
public static final String CURRENT_VERSION = "7.1.0.0"; // Note the extra .x at the end. To cater for snapshot releases with different database changes

public static final List<FlowableVersion> FLOWABLE_VERSIONS = new ArrayList<>();

Expand Down Expand Up @@ -142,6 +142,7 @@ public class FlowableVersions {
FLOWABLE_VERSIONS.add(new FlowableVersion("6.8.1.0"));
FLOWABLE_VERSIONS.add(new FlowableVersion("7.0.0.0"));
FLOWABLE_VERSIONS.add(new FlowableVersion("7.0.1.0"));
FLOWABLE_VERSIONS.add(new FlowableVersion("7.0.1.1"));

/* Current */
FLOWABLE_VERSIONS.add(new FlowableVersion(CURRENT_VERSION));
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ CREATE TABLE if not exists ACT_GE_BYTEARRAY (
);

insert into ACT_GE_PROPERTY
values ('common.schema.version', '7.0.1.1', 1);
values ('common.schema.version', '7.1.0.0', 1);

insert into ACT_GE_PROPERTY
values ('next.dbid', '1', 1);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ create table ACT_GE_BYTEARRAY (
);

insert into ACT_GE_PROPERTY
values ('common.schema.version', '7.0.1.1', 1);
values ('common.schema.version', '7.1.0.0', 1);

insert into ACT_GE_PROPERTY
values ('next.dbid', '1', 1);
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ create table ACT_GE_BYTEARRAY (
);

insert into ACT_GE_PROPERTY
values ('common.schema.version', '7.0.1.1', 1);
values ('common.schema.version', '7.1.0.0', 1);

insert into ACT_GE_PROPERTY
values ('next.dbid', '1', 1);
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ create table ACT_GE_BYTEARRAY (
);

insert into ACT_GE_PROPERTY
values ('common.schema.version', '7.0.1.1', 1);
values ('common.schema.version', '7.1.0.0', 1);

insert into ACT_GE_PROPERTY
values ('next.dbid', '1', 1);
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ create table ACT_GE_BYTEARRAY (
);

insert into ACT_GE_PROPERTY
values ('common.schema.version', '7.0.1.1', 1);
values ('common.schema.version', '7.1.0.0', 1);

insert into ACT_GE_PROPERTY
values ('next.dbid', '1', 1);
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ create table ACT_GE_BYTEARRAY (
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE utf8_bin;

insert into ACT_GE_PROPERTY
values ('common.schema.version', '7.0.1.1', 1);
values ('common.schema.version', '7.1.0.0', 1);

insert into ACT_GE_PROPERTY
values ('next.dbid', '1', 1);
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ create table ACT_GE_BYTEARRAY (
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE utf8_bin;

insert into ACT_GE_PROPERTY
values ('common.schema.version', '7.0.1.1', 1);
values ('common.schema.version', '7.1.0.0', 1);

insert into ACT_GE_PROPERTY
values ('next.dbid', '1', 1);
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ create table ACT_GE_BYTEARRAY (
);

insert into ACT_GE_PROPERTY
values ('common.schema.version', '7.0.1.1', 1);
values ('common.schema.version', '7.1.0.0', 1);

insert into ACT_GE_PROPERTY
values ('next.dbid', '1', 1);
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ create table ACT_GE_BYTEARRAY (
);

insert into ACT_GE_PROPERTY
values ('common.schema.version', '7.0.1.1', 1);
values ('common.schema.version', '7.1.0.0', 1);

insert into ACT_GE_PROPERTY
values ('next.dbid', '1', 1);
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
update ACT_GE_PROPERTY set VALUE_ = '7.1.0.0' where NAME_ = 'common.schema.version';
Original file line number Diff line number Diff line change
Expand Up @@ -348,9 +348,9 @@ alter table ACT_PROCDEF_INFO
unique (PROC_DEF_ID_);

insert into ACT_GE_PROPERTY
values ('schema.version', '7.0.1.1', 1);
values ('schema.version', '7.1.0.0', 1);

insert into ACT_GE_PROPERTY
values ('schema.history', 'create(7.0.1.1)', 1);
values ('schema.history', 'create(7.1.0.0)', 1);

--force-commit
Original file line number Diff line number Diff line change
Expand Up @@ -342,7 +342,7 @@ alter table ACT_PROCDEF_INFO
unique (PROC_DEF_ID_);

insert into ACT_GE_PROPERTY
values ('schema.version', '7.0.1.1', 1);
values ('schema.version', '7.1.0.0', 1);

insert into ACT_GE_PROPERTY
values ('schema.history', 'create(7.0.1.1)', 1);
values ('schema.history', 'create(7.1.0.0)', 1);
Original file line number Diff line number Diff line change
Expand Up @@ -317,7 +317,7 @@ alter table ACT_PROCDEF_INFO
unique (PROC_DEF_ID_);

insert into ACT_GE_PROPERTY
values ('schema.version', '7.0.1.1', 1);
values ('schema.version', '7.1.0.0', 1);

insert into ACT_GE_PROPERTY
values ('schema.history', 'create(7.0.1.1)', 1);
values ('schema.history', 'create(7.1.0.0)', 1);
Original file line number Diff line number Diff line change
Expand Up @@ -317,7 +317,7 @@ alter table ACT_PROCDEF_INFO
unique (PROC_DEF_ID_);

insert into ACT_GE_PROPERTY
values ('schema.version', '7.0.1.1', 1);
values ('schema.version', '7.1.0.0', 1);

insert into ACT_GE_PROPERTY
values ('schema.history', 'create(7.0.1.1)', 1);
values ('schema.history', 'create(7.1.0.0)', 1);
Original file line number Diff line number Diff line change
Expand Up @@ -337,7 +337,7 @@ alter table ACT_PROCDEF_INFO
unique (PROC_DEF_ID_);

insert into ACT_GE_PROPERTY
values ('schema.version', '7.0.1.1', 1);
values ('schema.version', '7.1.0.0', 1);

insert into ACT_GE_PROPERTY
values ('schema.history', 'create(7.0.1.1)', 1);
values ('schema.history', 'create(7.1.0.0)', 1);
Original file line number Diff line number Diff line change
Expand Up @@ -318,7 +318,7 @@ alter table ACT_PROCDEF_INFO
unique (PROC_DEF_ID_);

insert into ACT_GE_PROPERTY
values ('schema.version', '7.0.1.1', 1);
values ('schema.version', '7.1.0.0', 1);

insert into ACT_GE_PROPERTY
values ('schema.history', 'create(7.0.1.1)', 1);
values ('schema.history', 'create(7.1.0.0)', 1);
Original file line number Diff line number Diff line change
Expand Up @@ -317,7 +317,7 @@ alter table ACT_PROCDEF_INFO
unique (PROC_DEF_ID_);

insert into ACT_GE_PROPERTY
values ('schema.version', '7.0.1.1', 1);
values ('schema.version', '7.1.0.0', 1);

insert into ACT_GE_PROPERTY
values ('schema.history', 'create(7.0.1.1)', 1);
values ('schema.history', 'create(7.1.0.0)', 1);
Original file line number Diff line number Diff line change
Expand Up @@ -348,7 +348,7 @@ alter table ACT_PROCDEF_INFO
unique (PROC_DEF_ID_);

insert into ACT_GE_PROPERTY
values ('schema.version', '7.0.1.1', 1);
values ('schema.version', '7.1.0.0', 1);

insert into ACT_GE_PROPERTY
values ('schema.history', 'create(7.0.1.1)', 1);
values ('schema.history', 'create(7.1.0.0)', 1);
Original file line number Diff line number Diff line change
Expand Up @@ -348,7 +348,7 @@ alter table ACT_PROCDEF_INFO
unique (PROC_DEF_ID_);

insert into ACT_GE_PROPERTY
values ('schema.version', '7.0.1.1', 1);
values ('schema.version', '7.1.0.0', 1);

insert into ACT_GE_PROPERTY
values ('schema.history', 'create(7.0.1.1)', 1);
values ('schema.history', 'create(7.1.0.0)', 1);
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
update ACT_GE_PROPERTY set VALUE_ = '7.1.0.0' where NAME_ = 'schema.version';
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,6 @@ create index ACT_IDX_ENT_LNK_REF_SCOPE on ACT_RU_ENTITYLINK(REF_SCOPE_ID_, REF_S
create index ACT_IDX_ENT_LNK_ROOT_SCOPE on ACT_RU_ENTITYLINK(ROOT_SCOPE_ID_, ROOT_SCOPE_TYPE_, LINK_TYPE_);
create index ACT_IDX_ENT_LNK_SCOPE_DEF on ACT_RU_ENTITYLINK(SCOPE_DEFINITION_ID_, SCOPE_TYPE_, LINK_TYPE_);

insert into ACT_GE_PROPERTY values ('entitylink.schema.version', '7.0.1.1', 1);
insert into ACT_GE_PROPERTY values ('entitylink.schema.version', '7.1.0.0', 1);

-- force-commit
Original file line number Diff line number Diff line change
Expand Up @@ -22,4 +22,4 @@ create index ACT_IDX_ENT_LNK_REF_SCOPE on ACT_RU_ENTITYLINK(REF_SCOPE_ID_, REF_S
create index ACT_IDX_ENT_LNK_ROOT_SCOPE on ACT_RU_ENTITYLINK(ROOT_SCOPE_ID_, ROOT_SCOPE_TYPE_, LINK_TYPE_);
create index ACT_IDX_ENT_LNK_SCOPE_DEF on ACT_RU_ENTITYLINK(SCOPE_DEFINITION_ID_, SCOPE_TYPE_, LINK_TYPE_);

insert into ACT_GE_PROPERTY values ('entitylink.schema.version', '7.0.1.1', 1);
insert into ACT_GE_PROPERTY values ('entitylink.schema.version', '7.1.0.0', 1);
Original file line number Diff line number Diff line change
Expand Up @@ -22,4 +22,4 @@ create index ACT_IDX_ENT_LNK_REF_SCOPE on ACT_RU_ENTITYLINK(REF_SCOPE_ID_, REF_S
create index ACT_IDX_ENT_LNK_ROOT_SCOPE on ACT_RU_ENTITYLINK(ROOT_SCOPE_ID_, ROOT_SCOPE_TYPE_, LINK_TYPE_);
create index ACT_IDX_ENT_LNK_SCOPE_DEF on ACT_RU_ENTITYLINK(SCOPE_DEFINITION_ID_, SCOPE_TYPE_, LINK_TYPE_);

insert into ACT_GE_PROPERTY values ('entitylink.schema.version', '7.0.1.1', 1);
insert into ACT_GE_PROPERTY values ('entitylink.schema.version', '7.1.0.0', 1);
Original file line number Diff line number Diff line change
Expand Up @@ -22,4 +22,4 @@ create index ACT_IDX_ENT_LNK_REF_SCOPE on ACT_RU_ENTITYLINK(REF_SCOPE_ID_, REF_S
create index ACT_IDX_ENT_LNK_ROOT_SCOPE on ACT_RU_ENTITYLINK(ROOT_SCOPE_ID_, ROOT_SCOPE_TYPE_, LINK_TYPE_);
create index ACT_IDX_ENT_LNK_SCOPE_DEF on ACT_RU_ENTITYLINK(SCOPE_DEFINITION_ID_, SCOPE_TYPE_, LINK_TYPE_);

insert into ACT_GE_PROPERTY values ('entitylink.schema.version', '7.0.1.1', 1);
insert into ACT_GE_PROPERTY values ('entitylink.schema.version', '7.1.0.0', 1);
Original file line number Diff line number Diff line change
Expand Up @@ -22,4 +22,4 @@ create index ACT_IDX_ENT_LNK_REF_SCOPE on ACT_RU_ENTITYLINK(REF_SCOPE_ID_, REF_S
create index ACT_IDX_ENT_LNK_ROOT_SCOPE on ACT_RU_ENTITYLINK(ROOT_SCOPE_ID_, ROOT_SCOPE_TYPE_, LINK_TYPE_);
create index ACT_IDX_ENT_LNK_SCOPE_DEF on ACT_RU_ENTITYLINK(SCOPE_DEFINITION_ID_, SCOPE_TYPE_, LINK_TYPE_);

insert into ACT_GE_PROPERTY values ('entitylink.schema.version', '7.0.1.1', 1);
insert into ACT_GE_PROPERTY values ('entitylink.schema.version', '7.1.0.0', 1);
Original file line number Diff line number Diff line change
Expand Up @@ -22,4 +22,4 @@ create index ACT_IDX_ENT_LNK_REF_SCOPE on ACT_RU_ENTITYLINK(REF_SCOPE_ID_, REF_S
create index ACT_IDX_ENT_LNK_ROOT_SCOPE on ACT_RU_ENTITYLINK(ROOT_SCOPE_ID_, ROOT_SCOPE_TYPE_, LINK_TYPE_);
create index ACT_IDX_ENT_LNK_SCOPE_DEF on ACT_RU_ENTITYLINK(SCOPE_DEFINITION_ID_, SCOPE_TYPE_, LINK_TYPE_);

insert into ACT_GE_PROPERTY values ('entitylink.schema.version', '7.0.1.1', 1);
insert into ACT_GE_PROPERTY values ('entitylink.schema.version', '7.1.0.0', 1);
Original file line number Diff line number Diff line change
Expand Up @@ -22,4 +22,4 @@ create index ACT_IDX_ENT_LNK_REF_SCOPE on ACT_RU_ENTITYLINK(REF_SCOPE_ID_, REF_S
create index ACT_IDX_ENT_LNK_ROOT_SCOPE on ACT_RU_ENTITYLINK(ROOT_SCOPE_ID_, ROOT_SCOPE_TYPE_, LINK_TYPE_);
create index ACT_IDX_ENT_LNK_SCOPE_DEF on ACT_RU_ENTITYLINK(SCOPE_DEFINITION_ID_, SCOPE_TYPE_, LINK_TYPE_);

insert into ACT_GE_PROPERTY values ('entitylink.schema.version', '7.0.1.1', 1);
insert into ACT_GE_PROPERTY values ('entitylink.schema.version', '7.1.0.0', 1);
Original file line number Diff line number Diff line change
Expand Up @@ -22,4 +22,4 @@ create index ACT_IDX_ENT_LNK_REF_SCOPE on ACT_RU_ENTITYLINK(REF_SCOPE_ID_, REF_S
create index ACT_IDX_ENT_LNK_ROOT_SCOPE on ACT_RU_ENTITYLINK(ROOT_SCOPE_ID_, ROOT_SCOPE_TYPE_, LINK_TYPE_);
create index ACT_IDX_ENT_LNK_SCOPE_DEF on ACT_RU_ENTITYLINK(SCOPE_DEFINITION_ID_, SCOPE_TYPE_, LINK_TYPE_);

insert into ACT_GE_PROPERTY values ('entitylink.schema.version', '7.0.1.1', 1);
insert into ACT_GE_PROPERTY values ('entitylink.schema.version', '7.1.0.0', 1);
Original file line number Diff line number Diff line change
Expand Up @@ -22,4 +22,4 @@ create index ACT_IDX_ENT_LNK_REF_SCOPE on ACT_RU_ENTITYLINK(REF_SCOPE_ID_, REF_S
create index ACT_IDX_ENT_LNK_ROOT_SCOPE on ACT_RU_ENTITYLINK(ROOT_SCOPE_ID_, ROOT_SCOPE_TYPE_, LINK_TYPE_);
create index ACT_IDX_ENT_LNK_SCOPE_DEF on ACT_RU_ENTITYLINK(SCOPE_DEFINITION_ID_, SCOPE_TYPE_, LINK_TYPE_);

insert into ACT_GE_PROPERTY values ('entitylink.schema.version', '7.0.1.1', 1);
insert into ACT_GE_PROPERTY values ('entitylink.schema.version', '7.1.0.0', 1);
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
update ACT_GE_PROPERTY set VALUE_ = '7.1.0.0' where NAME_ = 'entitylink.schema.version';
Original file line number Diff line number Diff line change
Expand Up @@ -24,4 +24,4 @@ create index ACT_IDX_EVENT_SUBSCR_CONFIG_ on ACT_RU_EVENT_SUBSCR(CONFIGURATION_)
create index ACT_IDX_EVENT_SUBSCR on ACT_RU_EVENT_SUBSCR(EXECUTION_ID_);
create index ACT_IDX_EVENT_SUBSCR_SCOPEREF_ on ACT_RU_EVENT_SUBSCR(SCOPE_ID_, SCOPE_TYPE_);

insert into ACT_GE_PROPERTY values ('eventsubscription.schema.version', '7.0.1.1', 1);
insert into ACT_GE_PROPERTY values ('eventsubscription.schema.version', '7.1.0.0', 1);
Original file line number Diff line number Diff line change
Expand Up @@ -24,4 +24,4 @@ create index ACT_IDX_EVENT_SUBSCR_CONFIG_ on ACT_RU_EVENT_SUBSCR(CONFIGURATION_)
create index ACT_IDX_EVENT_SUBSCR_EXEC_ID on ACT_RU_EVENT_SUBSCR(EXECUTION_ID_);
create index ACT_IDX_EVENT_SUBSCR_SCOPEREF_ on ACT_RU_EVENT_SUBSCR(SCOPE_ID_, SCOPE_TYPE_);

insert into ACT_GE_PROPERTY values ('eventsubscription.schema.version', '7.0.1.1', 1);
insert into ACT_GE_PROPERTY values ('eventsubscription.schema.version', '7.1.0.0', 1);
Original file line number Diff line number Diff line change
Expand Up @@ -23,4 +23,4 @@ create table ACT_RU_EVENT_SUBSCR (
create index ACT_IDX_EVENT_SUBSCR_CONFIG_ on ACT_RU_EVENT_SUBSCR(CONFIGURATION_);
create index ACT_IDX_EVENT_SUBSCR_SCOPEREF_ on ACT_RU_EVENT_SUBSCR(SCOPE_ID_, SCOPE_TYPE_);

insert into ACT_GE_PROPERTY values ('eventsubscription.schema.version', '7.0.1.1', 1);
insert into ACT_GE_PROPERTY values ('eventsubscription.schema.version', '7.1.0.0', 1);
Original file line number Diff line number Diff line change
Expand Up @@ -23,4 +23,4 @@ create table ACT_RU_EVENT_SUBSCR (
create index ACT_IDX_EVENT_SUBSCR_CONFIG_ on ACT_RU_EVENT_SUBSCR(CONFIGURATION_);
create index ACT_IDX_EVENT_SUBSCR_SCOPEREF_ on ACT_RU_EVENT_SUBSCR(SCOPE_ID_, SCOPE_TYPE_);

insert into ACT_GE_PROPERTY values ('eventsubscription.schema.version', '7.0.1.1', 1);
insert into ACT_GE_PROPERTY values ('eventsubscription.schema.version', '7.1.0.0', 1);
Original file line number Diff line number Diff line change
Expand Up @@ -24,4 +24,4 @@ create index ACT_IDX_EVENT_SUBSCR_CONFIG_ on ACT_RU_EVENT_SUBSCR(CONFIGURATION_)
create index ACT_IDX_EVENT_SUBSCR_EXEC_ID on ACT_RU_EVENT_SUBSCR(EXECUTION_ID_);
create index ACT_IDX_EVENT_SUBSCR_SCOPEREF_ on ACT_RU_EVENT_SUBSCR(SCOPE_ID_, SCOPE_TYPE_);

insert into ACT_GE_PROPERTY values ('eventsubscription.schema.version', '7.0.1.1', 1);
insert into ACT_GE_PROPERTY values ('eventsubscription.schema.version', '7.1.0.0', 1);
Original file line number Diff line number Diff line change
Expand Up @@ -23,4 +23,4 @@ create table ACT_RU_EVENT_SUBSCR (
create index ACT_IDX_EVENT_SUBSCR_CONFIG_ on ACT_RU_EVENT_SUBSCR(CONFIGURATION_);
create index ACT_IDX_EVENT_SUBSCR_SCOPEREF_ on ACT_RU_EVENT_SUBSCR(SCOPE_ID_, SCOPE_TYPE_);

insert into ACT_GE_PROPERTY values ('eventsubscription.schema.version', '7.0.1.1', 1);
insert into ACT_GE_PROPERTY values ('eventsubscription.schema.version', '7.1.0.0', 1);
Original file line number Diff line number Diff line change
Expand Up @@ -23,4 +23,4 @@ create table ACT_RU_EVENT_SUBSCR (
create index ACT_IDX_EVENT_SUBSCR_CONFIG_ on ACT_RU_EVENT_SUBSCR(CONFIGURATION_);
create index ACT_IDX_EVENT_SUBSCR_SCOPEREF_ on ACT_RU_EVENT_SUBSCR(SCOPE_ID_, SCOPE_TYPE_);

insert into ACT_GE_PROPERTY values ('eventsubscription.schema.version', '7.0.1.1', 1);
insert into ACT_GE_PROPERTY values ('eventsubscription.schema.version', '7.1.0.0', 1);
Original file line number Diff line number Diff line change
Expand Up @@ -24,4 +24,4 @@ create index ACT_IDX_EVENT_SUBSCR_CONFIG_ on ACT_RU_EVENT_SUBSCR(CONFIGURATION_)
create index ACT_IDX_EVENT_SUBSCR on ACT_RU_EVENT_SUBSCR(EXECUTION_ID_);
create index ACT_IDX_EVENT_SUBSCR_SCOPEREF_ on ACT_RU_EVENT_SUBSCR(SCOPE_ID_, SCOPE_TYPE_);

insert into ACT_GE_PROPERTY values ('eventsubscription.schema.version', '7.0.1.1', 1);
insert into ACT_GE_PROPERTY values ('eventsubscription.schema.version', '7.1.0.0', 1);
Original file line number Diff line number Diff line change
Expand Up @@ -24,4 +24,4 @@ create index ACT_IDX_EVENT_SUBSCR_CONFIG_ on ACT_RU_EVENT_SUBSCR(CONFIGURATION_)
create index ACT_IDX_EVENT_SUBSCR on ACT_RU_EVENT_SUBSCR(EXECUTION_ID_);
create index ACT_IDX_EVENT_SUBSCR_SCOPEREF_ on ACT_RU_EVENT_SUBSCR(SCOPE_ID_, SCOPE_TYPE_);

insert into ACT_GE_PROPERTY values ('eventsubscription.schema.version', '7.0.1.1', 1);
insert into ACT_GE_PROPERTY values ('eventsubscription.schema.version', '7.1.0.0', 1);
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
update ACT_GE_PROPERTY set VALUE_ = '7.1.0.0' where NAME_ = 'eventsubscription.schema.version';
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,6 @@ create index ACT_IDX_IDENT_LNK_SCOPE on ACT_RU_IDENTITYLINK(SCOPE_ID_, SCOPE_TYP
create index ACT_IDX_IDENT_LNK_SUB_SCOPE on ACT_RU_IDENTITYLINK(SUB_SCOPE_ID_, SCOPE_TYPE_);
create index ACT_IDX_IDENT_LNK_SCOPE_DEF on ACT_RU_IDENTITYLINK(SCOPE_DEFINITION_ID_, SCOPE_TYPE_);

insert into ACT_GE_PROPERTY values ('identitylink.schema.version', '7.0.1.1', 1);
insert into ACT_GE_PROPERTY values ('identitylink.schema.version', '7.1.0.0', 1);

-- force-commit
Original file line number Diff line number Diff line change
Expand Up @@ -20,4 +20,4 @@ create index ACT_IDX_IDENT_LNK_SCOPE on ACT_RU_IDENTITYLINK(SCOPE_ID_, SCOPE_TYP
create index ACT_IDX_IDENT_LNK_SUB_SCOPE on ACT_RU_IDENTITYLINK(SUB_SCOPE_ID_, SCOPE_TYPE_);
create index ACT_IDX_IDENT_LNK_SCOPE_DEF on ACT_RU_IDENTITYLINK(SCOPE_DEFINITION_ID_, SCOPE_TYPE_);

insert into ACT_GE_PROPERTY values ('identitylink.schema.version', '7.0.1.1', 1);
insert into ACT_GE_PROPERTY values ('identitylink.schema.version', '7.1.0.0', 1);
Original file line number Diff line number Diff line change
Expand Up @@ -20,4 +20,4 @@ create index ACT_IDX_IDENT_LNK_SCOPE on ACT_RU_IDENTITYLINK(SCOPE_ID_, SCOPE_TYP
create index ACT_IDX_IDENT_LNK_SUB_SCOPE on ACT_RU_IDENTITYLINK(SUB_SCOPE_ID_, SCOPE_TYPE_);
create index ACT_IDX_IDENT_LNK_SCOPE_DEF on ACT_RU_IDENTITYLINK(SCOPE_DEFINITION_ID_, SCOPE_TYPE_);

insert into ACT_GE_PROPERTY values ('identitylink.schema.version', '7.0.1.1', 1);
insert into ACT_GE_PROPERTY values ('identitylink.schema.version', '7.1.0.0', 1);
Original file line number Diff line number Diff line change
Expand Up @@ -20,4 +20,4 @@ create index ACT_IDX_IDENT_LNK_SCOPE on ACT_RU_IDENTITYLINK(SCOPE_ID_, SCOPE_TYP
create index ACT_IDX_IDENT_LNK_SUB_SCOPE on ACT_RU_IDENTITYLINK(SUB_SCOPE_ID_, SCOPE_TYPE_);
create index ACT_IDX_IDENT_LNK_SCOPE_DEF on ACT_RU_IDENTITYLINK(SCOPE_DEFINITION_ID_, SCOPE_TYPE_);

insert into ACT_GE_PROPERTY values ('identitylink.schema.version', '7.0.1.1', 1);
insert into ACT_GE_PROPERTY values ('identitylink.schema.version', '7.1.0.0', 1);
Loading

0 comments on commit 7683479

Please sign in to comment.