001package io.ebean.config.dbplatform.postgres; 002 003import io.ebean.annotation.Platform; 004 005/** 006 * Postgres9 platform - uses serial type for identity columns. 007 */ 008public class Postgres9Platform extends PostgresPlatform { 009 010 public Postgres9Platform() { 011 super(); 012 this.platform = Platform.POSTGRES9; 013 } 014}