Skip to content

Migration from v1.4 to v1.5

MySQL / MariaDB:

ALTER TABLE WF_PROCESS_DEFINITION DROP INDEX IDX_PROC_DEF_NAME;
  • Stop Tomcat and replace the okmflow.war archive.
  • Edit the $TOMCAT_HOME/okmflow.properties file and set the hibernate.hbm2ddl configuration property to update:
spring.jpa.hibernate.ddl-auto=update
  • Start Tomcat again.
  • Execute the SQL script:
UPDATE WF_PROCESS_DEFINITION SET PD_ACTIVE ='T';