Create Schemas

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

TOML Configuration File

[flyway]
createSchemas = false

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>

Didn't find what you were looking for?