Schema support added, DBICTest refactored to use it
[dbsrgits/DBIx-Class.git] / lib / DBIx / Class / Core.pm
index 672c27f..94e1b2a 100644 (file)
@@ -3,16 +3,20 @@ package DBIx::Class::Core;
 use strict;
 use warnings;
 
-use base qw/DBIx::Class::Relationship
-            DBIx::Class::InflateColumn
-            DBIx::Class::SQL::OrderBy
-            DBIx::Class::SQL::Abstract
-            DBIx::Class::PK
-            DBIx::Class::Table
-            DBIx::Class::SQL
-            DBIx::Class::DB
-            DBIx::Class::Exception
-            DBIx::Class::AccessorGroup/;
+use base qw/DBIx::Class/;
+
+__PACKAGE__->load_components(qw/
+  Relationship::Accessor
+  Relationship::CascadeActions
+  Relationship::ProxyMethods
+  Relationship
+  InflateColumn
+  SQL::OrderBy
+  SQL::Abstract
+  PK
+  Table
+  Exception
+  AccessorGroup/);
 
 1;
 
@@ -23,7 +27,7 @@ DBIx::Class::Core - Core set of DBIx::Class modules.
 =head1 DESCRIPTION
 
 This class just inherits from the various modules that makes 
-up the Class::DBI  core features.
+up the DBIx::Class core features.
 
 
 =head1 AUTHORS