File tree Expand file tree Collapse file tree 2 files changed +3
-2
lines changed
contrib/flyway/src/mill/contrib/flyway Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -50,6 +50,7 @@ trait FlywayModule extends JavaModule {
5050 .configure(jdbcClassloader)
5151 .locations(flywayFileLocations().map(" filesystem:" + _.path)* )
5252 .configuration(configProps.asJava)
53+ .cleanDisabled(false )
5354 .load
5455 }
5556
@@ -115,7 +116,7 @@ object FlywayModule {
115116 ujson.Obj (
116117 " flywayVersion" -> r.flywayVersion.jsonify,
117118 " database" -> r.database.jsonify,
118- " operation" -> r.operation .jsonify,
119+ " operation" -> r.getOperation .jsonify,
119120 " warnings" -> r.warnings.asScala.toSeq.map(_.jsonify),
120121 " initialSchemaVersion" -> r.initialSchemaVersion.jsonify,
121122 " targetSchemaVersion" -> r.targetSchemaVersion.jsonify,
Original file line number Diff line number Diff line change @@ -107,7 +107,7 @@ object Deps {
107107 val cask = mvn " com.lihaoyi::cask:0.9.4 "
108108 val castor = mvn " com.lihaoyi::castor:0.3.0 "
109109 val fastparse = mvn " com.lihaoyi::fastparse:3.1.1 "
110- val flywayCore = mvn " org.flywaydb:flyway-core:8.5.13 "
110+ val flywayCore = mvn " org.flywaydb:flyway-core:11.8.2 "
111111 val graphvizJava = Seq (
112112 mvn " guru.nidi:graphviz-java-min-deps:0.18.1 " ,
113113 mvn " org.webjars.npm:viz.js-graphviz-java:2.1.3 " ,
You can’t perform that action at this time.
0 commit comments