Flyway Stuck at Old Schema Version Despite New Migrations Available
Hi everyone,
I'm encountering an issue with Flyway when managing migrations in PostgreSQL. Here's the situation:
In the Flyway logs, it shows that the current schema version is
"public": 3.4.199
, and it reports that the schema is up-to-date and no migration is necessary:
I have 369 migrations in the folders, with the latest migration version being 3.4.258.
Flyway is not applying the new migrations and continues to show that the schema is already up-to-date.
How can I get Flyway to apply migrations up to version 3.4.258? Are there any settings or parameters that might be affecting this behavior?