flyway.setInitVersion("0");
flyway.setDataSource(dataSource);
flyway.setTable(databaseMigrateInfo.getTable());
flyway.setLocations(new String[] { databaseMigrateInfo
.getLocation() });
flyway.migrate();
}
}
public void setApplicationProperties(Properties applicationProperties) {
this.applicationProperties = applicationProperties;