The jdbc url to use to connect to the database.
Note: Only certain jdbc drivers are packaged with flyway. If your driver is not packaged, then you need to ensure it is available on the classpath (see Adding to the classpath).
./flyway -url=jdbc:h2:mem:flyway_db info
flyway.url=jdbc:h2:mem:flyway_db
FLYWAY_URL=jdbc:h2:mem:flyway_db
Flyway.configure()
.url("jdbc:h2:mem:flyway_db")
.load()
flyway {
url = 'jdbc:h2:mem:flyway_db'
}
<configuration>
<url>jdbc:h2:file:./target/foobar</url>
</configuration>