f87a3cf93d0b81f7c8cfe50961a74afab4ade889
[dbsrgits/DBIx-Class.git] / lib / DBIx / Class / PK / Auto / MSSQL.pm
1 package # hide package from pause
2   DBIx::Class::PK::Auto::MSSQL;
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::MSSQL - (DEPRECATED) Automatic primary key class for MSSQL
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