Hide documentation for deprecated modules from PAUSE.
[dbsrgits/DBIx-Class.git] / lib / DBIx / Class / PK / Auto / MySQL.pm
index 59fb00f..8dd5c09 100644 (file)
@@ -1,4 +1,5 @@
-package DBIx::Class::PK::Auto::MySQL;
+package # hide package from pause
+  DBIx::Class::PK::Auto::MySQL;
 
 use strict;
 use warnings;
@@ -7,33 +8,22 @@ use base qw/DBIx::Class/;
 
 __PACKAGE__->load_components(qw/PK::Auto/);
 
-sub last_insert_id {
-  return $_[0]->result_source->storage->dbh->{mysql_insertid};
-}
-
 1;
 
-=head1 NAME 
+=head1 NAME
 
-DBIx::Class::PK::Auto::MySQL - Automatic Primary Key class for MySQL
+DBIx::Class::PK::Auto::MySQL - (DEPRECATED) Automatic primary key class for MySQL
 
 =head1 SYNOPSIS
 
-    # In your table classes
-    __PACKAGE__->load_components(qw/PK::Auto::MySQL Core/);
-    __PACKAGE__->set_primary_key('id');
-
-=head1 DESCRIPTION
-
-This class implements autoincrements for MySQL.
+Just load PK::Auto instead; auto-inc is now handled by Storage.
 
 =head1 AUTHORS
 
-Matt S. Trout <mst@shadowcatsystems.co.uk>
+Matt S Trout <mst@shadowcatsystems.co.uk>
 
 =head1 LICENSE
 
 You may distribute this code under the same terms as Perl itself.
 
 =cut
-