More refactoring, created PK::Auto::MySQL
[dbsrgits/DBIx-Class.git] / lib / DBIx / Class / Core.pm
CommitLineData
ea2e61bf 1package DBIx::Class::Core;
2
3use strict;
4use warnings;
223b8fe3 5no warnings 'qw';
ea2e61bf 6
126042ee 7use base qw/DBIx::Class/;
8
9__PACKAGE__->load_components(qw/
126042ee 10 Relationship
11 InflateColumn
126042ee 12 SQL::Abstract
13 PK
7624b19f 14 Row
126042ee 15 Table
126042ee 16 Exception
17 AccessorGroup/);
ea2e61bf 18
191;
34d52be2 20
21=head1 NAME
22
23DBIx::Class::Core - Core set of DBIx::Class modules.
24
25=head1 DESCRIPTION
26
27This class just inherits from the various modules that makes
126042ee 28up the DBIx::Class core features.
34d52be2 29
30
31=head1 AUTHORS
32
33Matt S. Trout <perl-stuff@trout.me.uk>
34
35=head1 LICENSE
36
37You may distribute this code under the same terms as Perl itself.
38
39=cut
40