Class PostgreSQLType

java.lang.Object
org.flywaydb.core.internal.database.base.SchemaObject<D,S>
org.flywaydb.core.internal.database.base.Type<PostgreSQLDatabase,PostgreSQLSchema>
org.flywaydb.database.postgresql.PostgreSQLType

public class PostgreSQLType extends org.flywaydb.core.internal.database.base.Type<PostgreSQLDatabase,PostgreSQLSchema>
PostgreSQL-specific type.
  • Field Summary

    Fields inherited from class org.flywaydb.core.internal.database.base.SchemaObject

    database, jdbcTemplate, name, schema
  • Constructor Summary

    Constructors
    Constructor
    Description
    PostgreSQLType(org.flywaydb.core.internal.jdbc.JdbcTemplate jdbcTemplate, PostgreSQLDatabase database, PostgreSQLSchema schema, String name)
    Creates a new PostgreSQL type.
  • Method Summary

    Modifier and Type
    Method
    Description
    protected void
     

    Methods inherited from class org.flywaydb.core.internal.database.base.SchemaObject

    drop, getDatabase, getName, getSchema, toString

    Methods inherited from class java.lang.Object

    clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
  • Constructor Details

    • PostgreSQLType

      public PostgreSQLType(org.flywaydb.core.internal.jdbc.JdbcTemplate jdbcTemplate, PostgreSQLDatabase database, PostgreSQLSchema schema, String name)
      Creates a new PostgreSQL type.
      Parameters:
      jdbcTemplate - The Jdbc Template for communicating with the DB.
      database - The database-specific support.
      schema - The schema this type lives in.
      name - The name of the type.
  • Method Details