Added Numa's count_all, removed warns from mysql and pg tests
[dbsrgits/DBIx-Class.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
8__PACKAGE__->load_own_components(qw/Accessor CascadeActions ProxyMethods Base/);
b8e1e21f 9
10__PACKAGE__->mk_classdata('_relationships', { } );
11
34d52be2 12=head1 NAME
13
14DBIx::Class::Relationship - Inter-table relationships
15
16=head1 SYNOPSIS
17
18=head1 DESCRIPTION
19
20This class handles relationships between the tables in your database
21model. It allows your to set up relationships, and to perform joins
22on searches.
23
24=head1 METHODS
25
26=over 4
27
28=cut
29
b8e1e21f 301;
34d52be2 31
32=back
33
34=head1 AUTHORS
35
36Matt S. Trout <perl-stuff@trout.me.uk>
37
38=head1 LICENSE
39
40You may distribute this code under the same terms as Perl itself.
41
42=cut
43