Database migration from activiti to flowable

Hey,

@ankit.singh have a look at Effortless migration from Activiti to Flowable as well. On the database level there is no difference between Flowable v5 and Activiti v5. In case you are migrating to Flowable v5 then you just need to change the poms. If you are migrating to v6 you can just follow the link @spille send.

@spille regarding the flowable5CompatibilityEnabled property. It is not exposed via Spring Boot properties. However, you can enable it by using an EngineConfigurationConfigurer

@Bean
public EngineConfigurationConfigurer<SpringProcessEngineConfiguration> enableFlowable5CompatibiityConfigurer() {
    return processEngineConfiguration -> processEngineConfiguration.setFlowable5CompatibilityEnabled(true);
}

Cheers,
Filip