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

org.flowable.task.service.db.upgrade.flowable.hsql.upgradestep.6210.to.6300.task.sql Maven / Gradle / Ivy

alter table ACT_RU_TASK add column SUB_TASK_COUNT_ integer;
update ACT_RU_TASK t set t.SUB_TASK_COUNT_ = (select count(*) from (select * from ACT_RU_TASK where IS_COUNT_ENABLED_ = true) as count_table where PARENT_TASK_ID_ = t.ID_) where t.IS_COUNT_ENABLED_ = true;

update ACT_GE_PROPERTY set VALUE_ = '6.3.0.0' where NAME_ = 'task.schema.version';




© 2015 - 2025 Weber Informatics LLC | Privacy Policy