Whether Flyway should attempt to create the schemas specified in the schemas property. See this page for more details
true
./flyway -createSchemas="false" info
flyway.createSchemas=false
FLYWAY_CREATE_SCHEMAS=false
Flyway.configure()
.createSchemas(false)
.load()
flyway {
createSchemas = false
}
<configuration>
<createSchemas>false</createSchemas>
</configuration>