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

org.flowable.db.upgrade.flowable.mssql.upgradestep.511.to.512.history.sql Maven / Gradle / Ivy

There is a newer version: 7.0.1
Show newest version
alter table ACT_HI_TASKINST
  add CLAIM_TIME_ datetime;

alter table ACT_HI_TASKINST
  add FORM_KEY_ nvarchar(255);
  
alter table ACT_RU_IDENTITYLINK
  add PROC_INST_ID_ nvarchar(64);
  
alter table ACT_RU_IDENTITYLINK
    add constraint ACT_FK_IDL_PROCINST
    foreign key (PROC_INST_ID_) 
    references ACT_RU_EXECUTION (ID_);     
  
create index ACT_IDX_HI_ACT_INST_EXEC on ACT_HI_ACTINST(EXECUTION_ID_, ACT_ID_);  




© 2015 - 2024 Weber Informatics LLC | Privacy Policy