Couple extra tweaks to Schema to support proposed C::M::DBIC
[dbsrgits/DBIx-Class.git] / lib / DBIx / Class / Core.pm
CommitLineData
ea2e61bf 1package DBIx::Class::Core;
2
3use strict;
4use warnings;
5
126042ee 6use base qw/DBIx::Class/;
7
8__PACKAGE__->load_components(qw/
9 Relationship::Accessor
10 Relationship::CascadeActions
11 Relationship::ProxyMethods
12 Relationship
13 InflateColumn
14 SQL::OrderBy
15 SQL::Abstract
16 PK
17 Table
126042ee 18 Exception
19 AccessorGroup/);
ea2e61bf 20
211;
34d52be2 22
23=head1 NAME
24
25DBIx::Class::Core - Core set of DBIx::Class modules.
26
27=head1 DESCRIPTION
28
29This class just inherits from the various modules that makes
126042ee 30up the DBIx::Class core features.
34d52be2 31
32
33=head1 AUTHORS
34
35Matt S. Trout <perl-stuff@trout.me.uk>
36
37=head1 LICENSE
38
39You may distribute this code under the same terms as Perl itself.
40
41=cut
42