I use Spring Boot with Flyway and now I need to use it with 2 databases, today this is my properties file:
flyway.validateOnMigrate=false
flyway.baselineOnMigrate=true
flyway.check-location=false
flyway.locations=classpath:db/migration
flyway.sql-migration-prefix=V
flyway.sql-migration-suffix=.sql
flyway.enabled=true
So How can I configure to use another connection (with another dir from my migrations)?