com.wavesenterprise.sdk.flyway.starter.FlywaySchemaProperties.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of we-flyway-starter Show documentation
Show all versions of we-flyway-starter Show documentation
WE Node Client for Java/Kotlin
The newest version!
package com.wavesenterprise.sdk.flyway.starter
import org.springframework.boot.autoconfigure.flyway.FlywayProperties
import org.springframework.boot.context.properties.ConfigurationProperties
import org.springframework.boot.context.properties.bind.DefaultValue
@ConfigurationProperties(prefix = "spring.flyway")
data class FlywaySchemaProperties(
@DefaultValue("false")
val mainAppFirst: Boolean,
val configurations: Map = mutableMapOf(),
)