All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.ebeaninternal.dbmigration.ddlgeneration.platform.YugabyteDdl Maven / Gradle / Ivy

There is a newer version: 15.8.0
Show newest version
package io.ebeaninternal.dbmigration.ddlgeneration.platform;

import io.ebean.config.dbplatform.DatabasePlatform;
import io.ebeaninternal.dbmigration.migration.Column;

import java.util.List;

public final class YugabyteDdl extends PostgresDdl {

  public YugabyteDdl(DatabasePlatform platform) {
    super(platform);
    this.historyDdl = new YugabyteHistoryDdl();
  }

  @Override
  protected List sortColumns(List columns) {
    return columns;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy