Skip to content

Commit

Permalink
fix: Incorrect path for SQL Server Migration (#2)
Browse files Browse the repository at this point in the history
  • Loading branch information
phzietsman authored Sep 10, 2024
1 parent ef9229a commit dfbffbe
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ private static String getLocation(String configDbUrl)
}

if (configDbUrl.startsWith("jdbc:sqlserver")) {
return "/db/mssql";
return "/db/sqlserver";
}

throw new IllegalArgumentException(format("Invalid JDBC URL: %s. Only mysql, postgresql and sqlserver is supported.", configDbUrl));
Expand Down

0 comments on commit dfbffbe

Please sign in to comment.