001package io.ebean.config.dbplatform.cockroach; 002 003import io.ebean.annotation.Platform; 004import io.ebean.config.dbplatform.postgres.PostgresPlatform; 005 006/** 007 * CockroachDB based platform. 008 */ 009public class CockroachPlatform extends PostgresPlatform { 010 011 public CockroachPlatform() { 012 super(); 013 this.platform = Platform.COCKROACH; 014 this.historySupport = null; // not yet implemented in DDL 015 } 016 017}