Commit | Line | Data |
8973b6f1 |
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; |