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

db.upgrade-scripts.postgresql.bpms-6.1-to-6.2.sql Maven / Gradle / Ivy

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

ALTER TABLE AuditTaskImpl ADD COLUMN workItemId int8;
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