liquibase.sqlgenerator.core.CreateTableGeneratorGbase8s Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of db-migration Show documentation
Show all versions of db-migration Show documentation
Flyway、Liquibase 扩展支持达梦(DM)数据库、南大通用(GBase 8s)数据库。
package liquibase.sqlgenerator.core;
import liquibase.database.core.Gbase8sDatabase;
import liquibase.database.Database;
import liquibase.statement.core.CreateTableStatement;
/**
* @author mengweijin
*/
public class CreateTableGeneratorGbase8s extends CreateTableGeneratorInformix {
@Override
public boolean supports(CreateTableStatement statement, Database database) {
return database instanceof Gbase8sDatabase;
}
}