liquibase.sqlgenerator.core.AddPrimaryKeyGeneratorGbase8s 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.AddPrimaryKeyStatement;
/**
* @author mengweijin
*/
public class AddPrimaryKeyGeneratorGbase8s extends AddPrimaryKeyGeneratorInformix {
@Override
public boolean supports(AddPrimaryKeyStatement statement, Database database) {
return (database instanceof Gbase8sDatabase);
}
}