e4a28d77b16effc0308bc7486da40a89e8ec30c3
[dbsrgits/DBIx-Class-Historic.git] / lib / DBIx / Class / Relationship / Helpers.pm
1 package DBIx::Class::Relationship::Helpers;
2
3 use strict;
4 use warnings;
5
6 use base qw/DBIx::Class/;
7
8 __PACKAGE__->load_components(qw/
9     Relationship::HasMany
10     Relationship::HasOne
11     Relationship::BelongsTo
12     Relationship::ManyToMany
13 /);
14
15 1;