Introduce GOVERNANCE document and empty RESOLUTIONS file.
[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 __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>.