Commit | Line | Data |
---|---|---|
f6a3f5ae | 1 | package DBIx::Class::PK::Auto::DB2; |
2 | ||
3 | use strict; | |
4 | use warnings; | |
5 | ||
6 | use base qw/DBIx::Class/; | |
7 | ||
8 | __PACKAGE__->load_components(qw/PK::Auto/); | |
9 | ||
f6359592 | 10 | 1; |
eb49d4e3 | 11 | |
75d07914 | 12 | =head1 NAME |
eb49d4e3 | 13 | |
0a8462d4 | 14 | DBIx::Class::PK::Auto::DB2 - (DEPRECATED) Automatic primary key class for DB2 |
eb49d4e3 | 15 | |
16 | =head1 SYNOPSIS | |
17 | ||
0a8462d4 | 18 | Just load PK::Auto instead; auto-inc is now handled by Storage. |
eb49d4e3 | 19 | |
20 | =head1 AUTHORS | |
21 | ||
0a8462d4 | 22 | Matt S Trout <mst@shadowcatsystems.co.uk> |
eb49d4e3 | 23 | |
24 | =head1 LICENSE | |
25 | ||
26 | You may distribute this code under the same terms as Perl itself. | |
27 | ||
28 | =cut |