BackPAN::Index::Schema - DBIx::Class schema class


BackPAN-Index documentation Contained in the BackPAN-Index distribution.

Index


Code Index:

NAME

Top

BackPAN::Index::Schema - DBIx::Class schema class

SYNOPSIS

Top

No user servicable parts inside

DESCRIPTION

Top

No user servicable parts inside


BackPAN-Index documentation Contained in the BackPAN-Index distribution.

package BackPAN::Index::Schema;

use strict;
use warnings;

use parent qw(DBIx::Class::Schema::Loader);

use CLASS;

CLASS->loader_options(
    moniker_map => sub {
        my $table = shift;
        my $class = ucfirst $table;
        $class =~ s/s$//;

        return $class;
    },
    result_namespace => '+BackPAN::Index',
    use_namespaces => 1,
    naming         => 'current',
);


1;