Make flyway protected so other apps can access it (#4372)

This commit is contained in:
benthecarman 2022-06-06 16:10:26 -05:00 committed by GitHub
parent 0a0fc92f32
commit 441937238f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -15,7 +15,7 @@ trait DbManagement extends Logging {
import scala.language.implicitConversions
private lazy val flyway: Flyway = {
protected lazy val flyway: Flyway = {
val module = appConfig.moduleName
val driverName = appConfig.driver match {