As far as I can tell this library supports running migrations, but is there also an option to just check if all migration where applied?
I am asking because I want to integrate a step into my CI/CD pipeline, where I block merges if not all migration where applied to the search database. This step would ensure that you don't accidentally delete a migration script or add new ones without applying them and so on.
Ideally the java program should return a non-zero error code, when not all migrations where applied, which is equal to just throwing an error.