e23e2430720ccd089795682cd20242721202de6f
[dbsrgits/DBIx-Class.git] / lib / DBIx / Class / PK / Auto / Oracle.pm
1 package # hide package from pause
2   DBIx::Class::PK::Auto::Oracle;
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::Oracle - (DEPRECATED) Automatic primary key class for Oracle
16
17 =head1 SYNOPSIS
18
19 Just load PK::Auto instead; auto-inc is now handled by Storage.
20
21 =head1 AUTHORS
22
23 Matt S Trout <mst@shadowcatsystems.co.uk>
24
25 =head1 LICENSE
26
27 You may distribute this code under the same terms as Perl itself.
28
29 =cut