001package io.ebean.migration; 002 003/** 004 * Known database platform names. 005 */ 006public interface DbPlatformNames { 007 008 String SQLSERVER = "sqlserver"; 009 String SQLITE = "sqlite"; 010 String POSTGRES = "postgres"; 011 String MYSQL = "mysql"; 012 String ORACLE = "oracle"; 013 String DB2 = "db2"; 014 String H2 = "h2"; 015 String HSQL = "hsql"; 016 String SQLANYWHERE = "sqlanywhere"; 017 String COCKROACH = "cockroach"; 018}