Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Pivotal Web Services: Flyway Enterprise Edition or MySQL upgrade required

I get the following message when deploying my Spring Boot Application to Pivotal Web Services with a MySQL cleardb spark database:

org.flywaydb.core.internal.license.FlywayEditionUpgradeRequiredException: 
    Flyway Enterprise Edition or MySQL upgrade required: MySQL 5.6 is no longer supported by 
    Flyway Community Edition, but still supported by Flyway Enterprise Edition.

I've tried deploying with Flyway v6.1.4. Are there any options other than ponying up $2950/yr for Flyway Enterprise? Can I run a more recent version of MySQL on Pivotal Web Services? Any good alternatives to Flyway?

like image 801
Richard Avatar asked Jan 16 '20 23:01

Richard


2 Answers

Downgrading to Flyway v5.2.4 solved my issue.

like image 172
Richard Avatar answered Oct 18 '22 00:10

Richard


I downgraded the FlyWay version that I had. Here is a sample:

<dependency>
  <groupId>org.flywaydb</groupId>
  <artifactId>flyway-core</artifactId>
  <version>7.15.0</version>
</dependency>
like image 40
khwilo Avatar answered Oct 18 '22 00:10

khwilo