Fix Flyway Clean Disabled Issue (#9556)

This commit is contained in:
Mohit Yadav 2023-01-02 17:59:04 +05:30 committed by GitHub
parent 420fa1181a
commit e5519663e6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -216,6 +216,7 @@ public final class TablesInitializer {
.cleanOnValidationError(false)
.locations(location)
.dataSource(url, user, password)
.cleanDisabled(false)
.load();
}