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

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

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

import io.ebean.config.dbplatform.DatabasePlatform;

/**
 * Hsqldb platform specific DDL.
 */
public class HsqldbDdl extends PlatformDdl {

  public HsqldbDdl(DatabasePlatform platform) {
    super(platform);
    this.identitySuffix = " generated by default as identity (start with 1) ";
  }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy