All Downloads are FREE. Search and download functionalities are using the official Maven repository.

db.upgrade-scripts.h2.jbpm-6.2-to-6.3.sql Maven / Gradle / Ivy

ALTER TABLE ProcessInstanceLog ADD correlationKey varchar(255);
ALTER TABLE TaskEvent ADD message varchar(255);

ALTER TABLE AuditTaskImpl ADD workItemId bigint;
UPDATE AuditTaskImpl a SET workItemId = (SELECT workItemId FROM Task WHERE id = a.taskId);

CREATE index IDX_PInstLog_correlation ON ProcessInstanceLog(correlationKey);




© 2015 - 2024 Weber Informatics LLC | Privacy Policy