mirror of
https://github.com/ebean-orm/ebean.git
synced 2024-04-21 10:51:47 +00:00
#1814 - Support older MySQL 5.5
This commit is contained in:
@@ -183,7 +183,7 @@ public abstract class BaseTestCase {
|
||||
}
|
||||
|
||||
public boolean isMySql() {
|
||||
return Platform.MYSQL == platform();
|
||||
return Platform.MYSQL == platform() || Platform.MYSQL55 == platform();
|
||||
}
|
||||
|
||||
public boolean isHana() {
|
||||
|
||||
@@ -49,6 +49,7 @@ public class DbMigrationGenerateTest {
|
||||
migration.addPlatform(Platform.H2, "h2");
|
||||
migration.addPlatform(Platform.HSQLDB, "hsqldb");
|
||||
migration.addPlatform(Platform.MYSQL, "mysql");
|
||||
migration.addPlatform(Platform.MYSQL55, "mysql55");
|
||||
migration.addPlatform(Platform.POSTGRES, "postgres");
|
||||
migration.addPlatform(Platform.ORACLE, "oracle");
|
||||
migration.addPlatform(Platform.SQLITE, "sqlite");
|
||||
|
||||
Reference in New Issue
Block a user