I don\'t quite understand what I am supposed to do when a migration fails using Flyway in a Spring Boot project.
I activated Flyway by simply adding the Flyway depen
You can do it through code by declaring the following bean.
@Bean public FlywayMigrationStrategy cleanMigrateStrategy() { return flyway -> { flyway.repair(); flyway.migrate(); }; }