Migrates the schema to the latest version. Flyway will create the metadata table automatically if it doesn't exist.
Migrate is the centerpiece of the Flyway workflow. It will scan the filesystem or your classpath for available migrations. It will compare them to the migrations that have been applied to the database. If any difference is found, it will migrate the database to close the gap.
Migrate should preferably be executed on application startup to avoid any incompatibilities between the database and the expectations of the code.
Migrate will apply the migrations 6, 7, 8 and 9 in order.
Migrate does nothing.