We were deploying flowable using the Springboot we are working on upgrading Spring boot to 2.1 and flowable to 6.4.1 which makes me do the configuring the Liquibase to update the schema. I was using the configuration in 6.0 to query we use the rw access and schema update we had deploy access
spring.datasource.tomcat.username=db.readwrite
spring.datasource.tomcat.password=db.readwrite
spring.datasource.schema-username=db.deploy
spring.datasource.schema-password=db.deploy
After migrating to 6.4.1 I am getting the access error when it is trying to create the table, I also tried adding the given properties
spring.liquibase.user=db.deploy
spring.liquibase.password=db.deploy
Please help in resolving the issue