Redgate Flyway

For PostgreSQL users - where are your DBs hosted?

Flyway Skip Default Resolvers Setting

Description

Whether default built-in resolvers (sql and jdbc) should be skipped. If true, only custom resolvers are used.

Type

Boolean

Default

false

Usage

Flyway Desktop

This can't be set in a config file via Flyway Desktop, although it will be honoured, and it can be configured as an advanced parameter in operations on the Migrations page.

Command-line

./flyway -skipDefaultResolvers="true" info

TOML Configuration File

[flyway]
skipDefaultResolvers = true

Configuration File

flyway.skipDefaultResolvers=true

Environment Variable

FLYWAY_SKIP_DEFAULT_RESOLVERS=true

API

Flyway.configure()
    .skipDefaultResolvers(true)
    .load()

Gradle

flyway {
    skipDefaultResolvers = true
}

Maven

<configuration>
    <skipDefaultResolvers>true</skipDefaultResolvers>
</configuration>

Didn't find what you were looking for?