forked from camunda/camunda-bpm-platform
-
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.
feat(engine): save user who evaluated a decision using the decision s…
…ervice related to #CAM-5238
- Loading branch information
1 parent
8b76b54
commit 6d01761
Showing
19 changed files
with
172 additions
and
53 deletions.
There are no files selected for viewing
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,20 +1,25 @@ | ||
-- tenant id -- | ||
|
||
ALTER TABLE ACT_RE_DEPLOYMENT | ||
ALTER TABLE ACT_RE_DEPLOYMENT | ||
ADD TENANT_ID_ varchar(255); | ||
|
||
create index ACT_IDX_DEPLOYMENT_TENANT_ID on ACT_RE_DEPLOYMENT(TENANT_ID_); | ||
|
||
ALTER TABLE ACT_RE_PROCDEF | ||
ALTER TABLE ACT_RE_PROCDEF | ||
ADD TENANT_ID_ varchar(255); | ||
|
||
ALTER TABLE ACT_RE_PROCDEF | ||
DROP UNIQUE ACT_UNIQ_PROCDEF; | ||
|
||
create index ACT_IDX_PROCDEF_TENANT_ID ON ACT_RE_PROCDEF(TENANT_ID_); | ||
|
||
ALTER TABLE ACT_RU_EXECUTION | ||
ALTER TABLE ACT_RU_EXECUTION | ||
ADD TENANT_ID_ varchar(255); | ||
|
||
create index ACT_IDX_EXEC_TENANT_ID on ACT_RU_EXECUTION(TENANT_ID_); | ||
|
||
|
||
|
||
-- user on historic decision instance -- | ||
|
||
ALTER TABLE ACT_HI_DECINST | ||
ADD USER_ID_ varchar(255); |
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,19 +1,25 @@ | ||
-- tenant id -- | ||
|
||
ALTER TABLE ACT_RE_DEPLOYMENT | ||
ALTER TABLE ACT_RE_DEPLOYMENT | ||
ADD TENANT_ID_ varchar(255); | ||
|
||
create index ACT_IDX_DEPLOYMENT_TENANT_ID on ACT_RE_DEPLOYMENT(TENANT_ID_); | ||
|
||
ALTER TABLE ACT_RE_PROCDEF | ||
ALTER TABLE ACT_RE_PROCDEF | ||
ADD TENANT_ID_ varchar(255); | ||
|
||
ALTER TABLE ACT_RE_PROCDEF | ||
DROP CONSTRAINT ACT_UNIQ_PROCDEF; | ||
|
||
create index ACT_IDX_PROCDEF_TENANT_ID ON ACT_RE_PROCDEF(TENANT_ID_); | ||
|
||
ALTER TABLE ACT_RU_EXECUTION | ||
ALTER TABLE ACT_RU_EXECUTION | ||
ADD TENANT_ID_ varchar(255); | ||
|
||
create index ACT_IDX_EXEC_TENANT_ID on ACT_RU_EXECUTION(TENANT_ID_); | ||
|
||
|
||
-- user on historic decision instance -- | ||
|
||
ALTER TABLE ACT_HI_DECINST | ||
ADD USER_ID_ varchar(255); |
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
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
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,19 +1,25 @@ | ||
-- tenant id -- | ||
|
||
ALTER TABLE ACT_RE_DEPLOYMENT | ||
ALTER TABLE ACT_RE_DEPLOYMENT | ||
ADD TENANT_ID_ varchar(255); | ||
|
||
create index ACT_IDX_DEPLOYMENT_TENANT_ID on ACT_RE_DEPLOYMENT(TENANT_ID_); | ||
|
||
ALTER TABLE ACT_RE_PROCDEF | ||
ALTER TABLE ACT_RE_PROCDEF | ||
ADD TENANT_ID_ varchar(255); | ||
|
||
ALTER TABLE ACT_RE_PROCDEF | ||
DROP INDEX ACT_UNIQ_PROCDEF; | ||
|
||
create index ACT_IDX_PROCDEF_TENANT_ID ON ACT_RE_PROCDEF(TENANT_ID_); | ||
|
||
ALTER TABLE ACT_RU_EXECUTION | ||
ALTER TABLE ACT_RU_EXECUTION | ||
ADD TENANT_ID_ varchar(255); | ||
|
||
create index ACT_IDX_EXEC_TENANT_ID on ACT_RU_EXECUTION(TENANT_ID_); | ||
|
||
|
||
-- user on historic decision instance -- | ||
|
||
ALTER TABLE ACT_HI_DECINST | ||
ADD USER_ID_ varchar(255); |
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,19 +1,25 @@ | ||
-- tenant id -- | ||
|
||
ALTER TABLE ACT_RE_DEPLOYMENT | ||
ALTER TABLE ACT_RE_DEPLOYMENT | ||
ADD TENANT_ID_ NVARCHAR2(255); | ||
|
||
create index ACT_IDX_DEPLOYMENT_TENANT_ID on ACT_RE_DEPLOYMENT(TENANT_ID_); | ||
|
||
ALTER TABLE ACT_RE_PROCDEF | ||
ALTER TABLE ACT_RE_PROCDEF | ||
ADD TENANT_ID_ NVARCHAR2(255); | ||
|
||
ALTER TABLE ACT_RE_PROCDEF | ||
DROP CONSTRAINT ACT_UNIQ_PROCDEF; | ||
|
||
create index ACT_IDX_PROCDEF_TENANT_ID ON ACT_RE_PROCDEF(TENANT_ID_); | ||
|
||
ALTER TABLE ACT_RU_EXECUTION | ||
ALTER TABLE ACT_RU_EXECUTION | ||
ADD TENANT_ID_ NVARCHAR2(255); | ||
|
||
create index ACT_IDX_EXEC_TENANT_ID on ACT_RU_EXECUTION(TENANT_ID_); | ||
|
||
|
||
-- user on historic decision instance -- | ||
|
||
ALTER TABLE ACT_HI_DECINST | ||
ADD USER_ID_ NVARCHAR2(255); |
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,19 +1,25 @@ | ||
-- tenant id -- | ||
|
||
ALTER TABLE ACT_RE_DEPLOYMENT | ||
ALTER TABLE ACT_RE_DEPLOYMENT | ||
ADD TENANT_ID_ varchar(255); | ||
|
||
create index ACT_IDX_DEPLOYMENT_TENANT_ID on ACT_RE_DEPLOYMENT(TENANT_ID_); | ||
|
||
ALTER TABLE ACT_RE_PROCDEF | ||
ALTER TABLE ACT_RE_PROCDEF | ||
ADD TENANT_ID_ varchar(255); | ||
|
||
ALTER TABLE ACT_RE_PROCDEF | ||
DROP CONSTRAINT ACT_UNIQ_PROCDEF; | ||
|
||
create index ACT_IDX_PROCDEF_TENANT_ID ON ACT_RE_PROCDEF(TENANT_ID_); | ||
|
||
ALTER TABLE ACT_RU_EXECUTION | ||
ALTER TABLE ACT_RU_EXECUTION | ||
ADD TENANT_ID_ varchar(255); | ||
|
||
create index ACT_IDX_EXEC_TENANT_ID on ACT_RU_EXECUTION(TENANT_ID_); | ||
|
||
|
||
-- user on historic decision instance -- | ||
|
||
ALTER TABLE ACT_HI_DECINST | ||
ADD USER_ID_ varchar(255); |
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
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
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
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
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
Oops, something went wrong.