File Coverage

blib/lib/DBIx/Class/PK/Auto/Pg.pm
Criterion Covered Total %
statement 9 9 100.0
branch n/a
condition n/a
subroutine 3 3 100.0
pod n/a
total 12 12 100.0


line stmt bran cond sub pod time code
1             package # hide package from pause
2             DBIx::Class::PK::Auto::Pg;
3              
4 3     3   3370 use strict;
  3         181  
  3         81  
5 3     3   15 use warnings;
  3         5  
  3         196  
6              
7 3     3   21 use base qw/DBIx::Class/;
  3         6  
  3         294  
8              
9             __PACKAGE__->load_components(qw/PK::Auto/);
10              
11             1;
12              
13             __END__
14              
15             =head1 NAME
16              
17             DBIx::Class::PK::Auto::Pg - (DEPRECATED) Automatic primary key class for Pg
18              
19             =head1 SYNOPSIS
20              
21             Just load PK::Auto instead; auto-inc is now handled by Storage.
22              
23             =head1 FURTHER QUESTIONS?
24              
25             Check the list of L<additional DBIC resources|DBIx::Class/GETTING HELP/SUPPORT>.
26              
27             =head1 COPYRIGHT AND LICENSE
28              
29             This module is free software L<copyright|DBIx::Class/COPYRIGHT AND LICENSE>
30             by the L<DBIx::Class (DBIC) authors|DBIx::Class/AUTHORS>. You can
31             redistribute it and/or modify it under the same terms as the
32             L<DBIx::Class library|DBIx::Class/COPYRIGHT AND LICENSE>.