Top "Flyway" questions

Flyway by Boxfuse is an open-source database migration tool.

Caused by: org.flywaydb.core.api.FlywayException: Validate failed. Migration Checksum mismatch for migration 2

I tried to find the solution for the below problem, but none of them worked for me. I am developing …

java spring-boot flyway
Flyway 3.0 Migration Checksum mismatch

after upgrading Flyway Maven plugin from 2.3 to 3.0 I get: [ERROR] Failed to execute goal org.flywaydb:flyway-maven-plugin:3.0:migrate (default-cli) on …

maven flyway
Flyway and Spring Boot integration

I trying to integrate Flyway for migrations in a Spring Boot project with Hibernate and Spring JPA. I'm getting the …

java spring hibernate spring-boot flyway
Detected resolved migration not applied to database on flyway

We are using flyway to manage database schema version and we are facing a problem. Since we work as a …

database flyway
Flyway migration, Unable to obtain Jdbc connection from DataSource

I am trying to use flyway to create and manage a MySQL database. Here is the code i have got …

mysql maven jdbc flyway
How to roll back migrations using Flyway?

MyBatis migrations splits each SQL file into two sections: One for migrating forward one version One for migrating back one …

java database flyway rollback
Flyway: non-empty schema without metadata table

Found non-empty schema "public" without metadata table! Use init() or set initOnMigrate to true to initialize the metadata table. I'm …

flyway
How to disable flyway in a certain spring profile?

Now I have a spring-boot app which uses MsSQL server. And we use flyway for migrations. I want to add …

java spring spring-boot flyway spring-profiles
How to create a database with flyway?

Question: Is it possible to create a new DB in a migration script and then connect to it? How? My …

java database postgresql jdbc flyway
Embedded Postgres for Spring Boot Tests

I'm building a Spring Boot app, backed by Postgres, using Flyway for database migrations. I've been bumping up against issues …

spring postgresql spring-boot flyway