| BackPAN-Index documentation | Contained in the BackPAN-Index distribution. |
BackPAN::Index::Schema - DBIx::Class schema class
No user servicable parts inside
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;