Removed Class::Data::Accessor and DBIx::Class::AccessorGrouped and
[dbsrgits/DBIx-Class.git] / lib / DBIx / Class / Core.pm
index 455e741..504480e 100644 (file)
@@ -8,16 +8,17 @@ use base qw/DBIx::Class/;
 
 __PACKAGE__->load_components(qw/
   Serialize::Storable
-  InflateColumn
   Relationship
+  InflateColumn
+  PK::Auto
   PK
   Row
   ResultSourceProxy::Table
-  AccessorGroup/);
+  /);
 
 1;
 
-=head1 NAME 
+=head1 NAME
 
 DBIx::Class::Core - Core set of DBIx::Class modules
 
@@ -35,24 +36,22 @@ The core modules currently are:
 
 =over 4
 
+=item L<DBIx::Class::Serialize::Storable>
+
 =item L<DBIx::Class::InflateColumn>
 
 =item L<DBIx::Class::Relationship>
 
+=item L<DBIx::Class::PK::Auto>
+
 =item L<DBIx::Class::PK>
 
 =item L<DBIx::Class::Row>
 
 =item L<DBIx::Class::ResultSourceProxy::Table>
 
-=item L<DBIx::Class::AccessorGroup>
-
 =back
 
-If you are also using a L<DBIx::Class::PK::Auto> component, please
-make sure you load it correctly. Refer to
-L<DBIx::Class::PK::Auto/DESCRIPTION> for more information.
-
 =head1 AUTHORS
 
 Matt S. Trout <mst@shadowcatsystems.co.uk>