001package io.ebeaninternal.dbmigration.ddlgeneration.platform;
002
003import io.ebean.config.dbplatform.DatabasePlatform;
004
005public class YugabyteDdl extends PostgresDdl {
006
007  public YugabyteDdl(DatabasePlatform platform) {
008    super(platform);
009    this.historyDdl = new YugabyteHistoryDdl();
010  }
011}