Currently I have Spring + Flyway + Gradle setup. Everything works fine. Spring does its automagic to run Flyway migrations. Now we need to set 2 flags for Flyway in code, to allow out-of-order migrations, and ignore missing migrations. I can see from documentations that a class (FlywayProperties) exists for this, but I can't find a way to use it inside my code.
Do I need to create some bean that changes it or how do I do it?