NAME

    Database::Migrator::Pg - Database::Migrator implementation for Postgres

VERSION

    version 0.05

SYNOPSIS

      package MyApp::Migrator;
    
      use Moose;
    
      extends 'Database::Migrator::Pg';
    
      has '+database' => (
          required => 0,
          default  => 'MyApp',
      );

DESCRIPTION

    This module provides a Database::Migrator implementation for Postgres.
    See Database::Migrator and Database::Migrator::Core for more
    documentation.

ATTRIBUTES

    This class adds several attributes in addition to those implemented by
    Database::Migrator::Core. All of these attributes are optional.

      * encoding

      The encoding of the database. This is only used when creating a new
      database.

      * locale

      The locale of the database. This is only used when creating a new
      database.

      * lc_collate

      The LC_COLLATE setting for the database. This is only used when
      creating a new database.

      * lc_ctype

      The LC_CTYPE setting for the database. This is only used when
      creating a new database.

      * owner

      The owner of the database. This is only used when creating a new
      database.

      * tablespace

      The tablespace for the database. This is only used when creating a
      new database.

      * template

      The template for the database. This is only used when creating a new
      database.

SUPPORT

    Please submit bugs to the CPAN RT system at
    http://rt.cpan.org/NoAuth/Bugs.html?Dist=Database-Migrator-Pg or via
    email at bug-database-migrator-pg@rt.cpan.org.

AUTHOR

    Dave Rolsky <autarch@urth.org>

COPYRIGHT AND LICENSE

    This software is Copyright (c) 2015 by MaxMind, Inc..

    This is free software, licensed under:

      The Artistic License 2.0 (GPL Compatible)