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

org.flowable.db.upgrade.flowable.mssql.upgradestep.5151.to.516.engine.sql Maven / Gradle / Ivy

There is a newer version: 7.0.1
Show newest version
alter table ACT_RU_TASK
	add FORM_KEY_ nvarchar(255);
	
alter table ACT_RU_EXECUTION
	add NAME_ nvarchar(255);
	
create table ACT_EVT_LOG (
    LOG_NR_ numeric(19,0) IDENTITY(1,1),
    TYPE_ nvarchar(64),
    PROC_DEF_ID_ nvarchar(64),
    PROC_INST_ID_ nvarchar(64),
    EXECUTION_ID_ nvarchar(64),
    TASK_ID_ nvarchar(64),
    TIME_STAMP_ datetime not null,
    USER_ID_ nvarchar(255),
    DATA_ varbinary(max),
    LOCK_OWNER_ nvarchar(255),
    LOCK_TIME_ datetime null,
    IS_PROCESSED_ tinyint default 0,
    primary key (LOG_NR_)
);  	
	
update ACT_GE_PROPERTY set VALUE_ = '5.16' where NAME_ = 'schema.version';




© 2015 - 2024 Weber Informatics LLC | Privacy Policy