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

db.upgrade-scripts.oracle.jbpm-6.0-to-6.1.sql Maven / Gradle / Ivy

There is a newer version: 7.74.1.Final
Show newest version
-- update context mapping info table with owner id (deployment id) for per process instance strategies
alter table ContextMappingInfo add OWNER_ID varchar2(255 char);
update ContextMappingInfo set OWNER_ID = (select externalId from ProcessInstanceLog where processInstanceId = cast(CONTEXT_ID as number(19,0)));

create table AuditTaskImpl (
        id number(19,0) not null,
        activationTime date,
        actualOwner varchar2(255 char),
        createdBy varchar2(255 char),
        createdOn date,
        deploymentId varchar2(255 char),
        description varchar2(255 char),
        dueDate date,
        name varchar2(255 char),
        parentId number(19,0) not null,
        priority number(10,0) not null,
        processId varchar2(255 char),
        processInstanceId number(19,0) not null,
        processSessionId number(10,0) not null,
        status varchar2(255 char),
        taskId number(19,0),
        primary key (id));

create sequence AUDIT_ID_SEQ;




© 2015 - 2024 Weber Informatics LLC | Privacy Policy