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

org.flowable.db.upgrade.flowable.mssql.upgradestep.6010.to.6100.history.sql Maven / Gradle / Ivy

There is a newer version: 7.0.1
Show newest version
create index ACT_IDX_HI_PROCVAR_EXE on ACT_HI_VARINST(EXECUTION_ID_);

alter table ACT_HI_PROCINST add REV_ int default 1;
update ACT_HI_PROCINST set REV_ = 1;

alter table ACT_HI_ACTINST add REV_ int default 1;
update ACT_HI_ACTINST set REV_ = 1;

alter table ACT_HI_TASKINST add REV_ int default 1;
update ACT_HI_TASKINST set REV_ = 1;

alter table ACT_HI_TASKINST add LAST_UPDATED_TIME_ datetime2;

alter table ACT_HI_VARINST ADD DEFAULT 1 FOR REV_;
update ACT_HI_VARINST set REV_ = 1 where REV_ is null OR REV_ = 0;

alter table ACT_HI_VARINST alter column LAST_UPDATED_TIME_ datetime2;




© 2015 - 2024 Weber Informatics LLC | Privacy Policy