You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

15 lines
421 B

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_);