Skip to content
This repository has been archived by the owner on Nov 23, 2021. It is now read-only.

Commit

Permalink
Merge pull request #641 from AbhayChandel/develop-2.x
Browse files Browse the repository at this point in the history
Migration from Flyway 3.2.1 to 4.2.0
  • Loading branch information
sjimenez77 authored May 16, 2018
2 parents d0e7aee + 223297a commit ea4a0c5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions samples/core/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -116,6 +116,7 @@
<dependency>
<groupId>org.flywaydb</groupId>
<artifactId>flyway-core</artifactId>
<version>4.2.0</version>
</dependency>

<!-- hibernate -->
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,7 @@ public void importTestData(String importTestDataPath) {
final Flyway flyway = new Flyway();
flyway.setDataSource(this.dataSource);
flyway.setLocations(importTestDataPath);
flyway.setIgnoreMissingMigrations(true);
flyway.migrate();
}

Expand Down

0 comments on commit ea4a0c5

Please sign in to comment.