Addition of a bunch of helper relationship methods
[dbsrgits/DBIx-Class-Historic.git] / lib / DBIx / Class / Relationship.pm
CommitLineData
b8e1e21f 1package DBIx::Class::Relationship;
2
3use strict;
4use warnings;
5
55e2d745 6use base qw/DBIx::Class Class::Data::Inheritable/;
7
07037f89 8__PACKAGE__->load_own_components(qw/
9 HasMany
10 HasOne
11 BelongsTo
12 Accessor
13 CascadeActions
14 ProxyMethods
15 Base
16/);
b8e1e21f 17
18__PACKAGE__->mk_classdata('_relationships', { } );
19
34d52be2 20=head1 NAME
21
22DBIx::Class::Relationship - Inter-table relationships
23
24=head1 SYNOPSIS
25
26=head1 DESCRIPTION
27
28This class handles relationships between the tables in your database
29model. It allows your to set up relationships, and to perform joins
30on searches.
31
32=head1 METHODS
33
34=over 4
35
36=cut
37
b8e1e21f 381;
34d52be2 39
40=back
41
42=head1 AUTHORS
43
daec44b8 44Matt S. Trout <mst@shadowcatsystems.co.uk>
34d52be2 45
46=head1 LICENSE
47
48You may distribute this code under the same terms as Perl itself.
49
50=cut
51