Skip to content

Latest commit

 

History

History

migrations-flyway

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 

Flyway Migrations

Flyway is an open-source database migration tool. It strongly favors simplicity and convention over configuration.

It is based around just 7 basic commands: Migrate, Clean, Info, Validate, Undo, Baseline and Repair.

Sources

Best place to look for configuration file are official docs

Sample Configuration Files

Specific Configurations

Spring Boot

Just include the maven or gradle dependency

compile "org.flywaydb:flyway-core"

Spring Boot will then automatically autowire Flyway with its DataSource and invoke it on startup. Hence no other configuration or file required to get started.