001package io.ebean.config.dbplatform.db2; 002 003import io.ebean.annotation.Platform; 004 005/** 006 * DB2 platform for z/OS. 007 * Note: This platform is currently not tested! 008 * @author Roland Praml, FOCONIS AG 009 * 010 */ 011public class DB2ZosPlatform extends BaseDB2Platform { 012 public DB2ZosPlatform() { 013 super(); 014 this.platform = Platform.DB2ZOS; 015 this.maxTableNameLength = 128; 016 this.maxConstraintNameLength = 128; 017 } 018}