The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

DBIx::Class::Schema::Loader::Pg - DBIx::Class::Schema::Loader Postgres Implementation.

SYNOPSIS

  package My::Schema;
  use base qw/DBIx::Class::Schema::Loader/;

  __PACKAGE__->load_from_connection(
    dsn       => "dbi:Pg:dbname=dbname",
    user      => "postgres",
    password  => "",
  );

  1;

DESCRIPTION

See DBIx::Class::Schema::Loader.

METHODS

new

Overrides DBIx::Class::Schema::Loader::Generic's new() to default the postgres schema to public rather than blank.

SEE ALSO

DBIx::Class::Schema::Loader