001package io.ebean.config.dbplatform.db2;
002
003import io.ebean.annotation.Platform;
004
005/**
006 * DB2 platform for Linux/Unix/Windows.
007 * @author Roland Praml, FOCONIS AG
008 *
009 */
010public class DB2LuwPlatform extends BaseDB2Platform {
011  public DB2LuwPlatform() {
012    super();
013    this.platform = Platform.DB2LUW;
014    this.maxTableNameLength = 128;
015    this.maxConstraintNameLength = 128;
016  }
017}