AUTHORS mass update; mst doesn't have to take credit for -everything- :)
[dbsrgits/DBIx-Class.git] / lib / DBIx / Class / PK / Auto / Pg.pm
1 package # hide package from pause
2   DBIx::Class::PK::Auto::Pg;
3
4 use strict;
5 use warnings;
6
7 use base qw/DBIx::Class/;
8
9 __PACKAGE__->load_components(qw/PK::Auto/);
10
11 1;
12
13 =head1 NAME
14
15 DBIx::Class::PK::Auto::Pg - (DEPRECATED) Automatic primary key class for Pg
16
17 =head1 SYNOPSIS
18
19 Just load PK::Auto instead; auto-inc is now handled by Storage.
20
21 =head1 AUTHOR AND CONTRIBUTORS
22
23 See L<AUTHOR|DBIx::Class/AUTHOR> and L<CONTRIBUTORS|DBIx::Class/CONTRIBUTORS> in DBIx::Class
24
25 =head1 LICENSE
26
27 You may distribute this code under the same terms as Perl itself.
28
29 =cut