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