// This software is released into the Public Domain. See copying.txt for details. package org.openstreetmap.osmosis.pgsimple.v0_6; /** * Defines constants specific to the specific schema version. * * @author Brett Henderson */ public final class PostgreSqlVersionConstants { /** * This class cannot be instantiated. */ private PostgreSqlVersionConstants() { } /** * Defines the schema version number currently supported. */ public static final int SCHEMA_VERSION = 5; }