Redgate Flyway

For PostgreSQL users - where are your DBs hosted?

Flyway Fail On Missing Locations Setting

Description

Whether to fail if a location specified in the locationsoption doesn't exist.

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

. Namespace/Flyway locations) option doesn't exist.

## 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

```powershell
. flyway -failOnMissingLocations="true" migrate

TOML Configuration File

[flyway]
failOnMissingLocations = true

Configuration File

flyway.failOnMissingLocations=true

Environment Variable

FLYWAY_FAIL_ON_MISSING_LOCATIONS=true

API

Flyway.configure()
    .failOnMissingLocations(true)
    .load()

Gradle

flyway {
    failOnMissingLocations = true
}

Maven

<configuration>
    <failOnMissingLocations>true</failOnMissingLocations>
</configuration>

Didn't find what you were looking for?