Removed Class::Data::Accessor and DBIx::Class::AccessorGrouped and
[dbsrgits/DBIx-Class.git] / lib / DBIx / Class / Core.pm
index 44a5f96..504480e 100644 (file)
@@ -7,17 +7,18 @@ no warnings 'qw';
 use base qw/DBIx::Class/;
 
 __PACKAGE__->load_components(qw/
-  InflateColumn
+  Serialize::Storable
   Relationship
+  InflateColumn
+  PK::Auto
   PK
   Row
   ResultSourceProxy::Table
-  Exception
-  AccessorGroup/);
+  /);
 
 1;
 
-=head1 NAME 
+=head1 NAME
 
 DBIx::Class::Core - Core set of DBIx::Class modules
 
@@ -35,26 +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::Exception>
-
-=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>