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

Create Schemas

Description

Whether Flyway should attempt to create the schemas specified in the schemas property. See this page for more details

Default

true

Usage

Commandline

./flyway -createSchemas="false" info

Configuration File

flyway.createSchemas=false

Environment Variable

FLYWAY_CREATE_SCHEMAS=false

API

Flyway.configure()
    .createSchemas(false)
    .load()

Gradle

flyway {
    createSchemas = false
}

Maven

<configuration>
    <createSchemas>false</createSchemas>
</configuration>