Redgate Summit – The Database DevOps Transformation Watch now
PASS Data Community Summit logo

PASS Data Community Summit

A hybrid conference in Seattle and online

15-18 November

Flyway Documentation

This documentation is deprecated. The new documentation can now be found on documentation.red-gate.com

Poll

URL

Description

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).

Usage

Commandline

./flyway -url=jdbc:h2:mem:flyway_db info

Configuration File

flyway.url=jdbc:h2:mem:flyway_db

Environment Variable

FLYWAY_URL=jdbc:h2:mem:flyway_db

API

Flyway.configure()
    .url("jdbc:h2:mem:flyway_db")
    .load()

Gradle

flyway {
    url = 'jdbc:h2:mem:flyway_db'
}

Maven

<configuration>
    <url>jdbc:h2:file:./target/foobar</url>
</configuration>