Community DB Support Enabled
Published 21 March 2024
Community DB Support Enabled
Description
Whether to enable or disable support for community databases. Set to false
to prevent Flyway from using a community database connection.
This is especially useful for production environments where using a community database connection could be undesirable.
Default
true
Usage
Commandline
./flyway -communityDBSupportEnabled="false" migrate
TOML Configuration File
[flyway]
communityDBSupportEnabled = false
Configuration File
flyway.communityDBSupportEnabled=false
Environment Variable
FLYWAY_COMMUNITY_DB_SUPPORT_DISABLED=false
API
Flyway.configure()
.communityDBSupportEnabled(false)
.load()
Gradle
flyway {
communityDBSupportEnabled = false
}
Maven
<configuration>
<communityDBSupportEnabled>false</communityDBSupportEnabled>
</configuration>