I'm using both Java and SQL migrations using Flyway, using the Java API. I have not changed the default locations for the migration folder, that is, I use "db/migration".
But, for the sake of clarity, I would like to have both the SQL and Java migrations in the same folder (Flyway reads the Java migrations from src/main/java/db/migration folder and the SQL ones from src/main/resources/db/migration). I have tried to copy the SQL scripts to the java folder but flyway ignores them.
Is this possible?