Skip to content

Commit

Permalink
Merge pull request #21939 from zedbeit/flyway-migration-note
Browse files Browse the repository at this point in the history
Update documentation to include flyway breaking change
  • Loading branch information
geoand authored Dec 6, 2021
2 parents c3b3a46 + b775bc4 commit cc77d92
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion docs/src/main/asciidoc/flyway.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ In your `pom.xml`, add the following dependencies:

* the Flyway extension
* your JDBC driver extension (`quarkus-jdbc-postgresql`, `quarkus-jdbc-h2`, `quarkus-jdbc-mariadb`, ...)

* the SQL Server support is now in a separate dependency, SQL Server users need to add the `flyway-sqlserver` dependency from now on.
[source,xml]
----
<dependencies>
Expand All @@ -34,6 +34,12 @@ In your `pom.xml`, add the following dependencies:
<groupId>io.quarkus</groupId>
<artifactId>quarkus-flyway</artifactId>
</dependency>
<!-- Flyway SQL Server specific dependencies -->
<dependency>
<groupId>org.flywaydb</groupId>
<artifactId>flyway-sqlserver</artifactId>
</dependency>
<!-- JDBC driver dependencies -->
<dependency>
Expand Down

0 comments on commit cc77d92

Please sign in to comment.