Browse Source

Fixed flyway migration files path

Fixed flyway migration files path from previous commit
master
Rohan Sircar 4 years ago
parent
commit
15db21340a
  1. 2
      build.sbt

2
build.sbt

@ -40,7 +40,7 @@ lazy val flyway = (project in file("modules/flyway"))
.enablePlugins(FlywayPlugin)
.settings(
libraryDependencies += "org.flywaydb" % "flyway-core" % FlywayVersion,
flywayLocations := Seq("classpath:conf/db/migration/default"),
flywayLocations := Seq("classpath:db/migration/default"),
flywayUrl := databaseUrl,
flywayUser := databaseUser,
flywayPassword := databasePassword,

Loading…
Cancel
Save