line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
package # hide from PAUSE |
2
|
|
|
|
|
|
|
DBIx::Class::Schema::PopulateMore::Test::Schema::Result; |
3
|
|
|
|
|
|
|
|
4
|
3
|
|
|
3
|
|
1532
|
use parent 'DBIx::Class::Core'; |
|
3
|
|
|
|
|
7
|
|
|
3
|
|
|
|
|
20
|
|
5
|
|
|
|
|
|
|
|
6
|
|
|
|
|
|
|
=head1 NAME |
7
|
|
|
|
|
|
|
|
8
|
|
|
|
|
|
|
DBIx::Class::Schema::PopulateMore::Test::Schema::Result - A base result class |
9
|
|
|
|
|
|
|
|
10
|
|
|
|
|
|
|
=head1 DESCRIPTION |
11
|
|
|
|
|
|
|
|
12
|
|
|
|
|
|
|
Defines the base case for loading DBIC Schemas. We add in some additional |
13
|
|
|
|
|
|
|
helpful functions for administering you schemas. |
14
|
|
|
|
|
|
|
|
15
|
|
|
|
|
|
|
=head1 PACKAGE METHODS |
16
|
|
|
|
|
|
|
|
17
|
|
|
|
|
|
|
The following is a list of package methods declared with this class. |
18
|
|
|
|
|
|
|
|
19
|
|
|
|
|
|
|
=head2 load_components |
20
|
|
|
|
|
|
|
|
21
|
|
|
|
|
|
|
Components to preload. |
22
|
|
|
|
|
|
|
|
23
|
|
|
|
|
|
|
=cut |
24
|
|
|
|
|
|
|
|
25
|
|
|
|
|
|
|
__PACKAGE__->load_components(qw/ |
26
|
|
|
|
|
|
|
PK::Auto |
27
|
|
|
|
|
|
|
InflateColumn::DateTime |
28
|
|
|
|
|
|
|
/); |
29
|
|
|
|
|
|
|
|
30
|
|
|
|
|
|
|
|
31
|
|
|
|
|
|
|
=head1 METHODS |
32
|
|
|
|
|
|
|
|
33
|
|
|
|
|
|
|
This module declares the following methods. |
34
|
|
|
|
|
|
|
|
35
|
|
|
|
|
|
|
=head1 AUTHOR |
36
|
|
|
|
|
|
|
|
37
|
|
|
|
|
|
|
Please see L<DBIx::Class::Schema::PopulateMore> For authorship information |
38
|
|
|
|
|
|
|
|
39
|
|
|
|
|
|
|
=head1 LICENSE |
40
|
|
|
|
|
|
|
|
41
|
|
|
|
|
|
|
Please see L<DBIx::Class::Schema::PopulateMore> For licensing terms. |
42
|
|
|
|
|
|
|
|
43
|
|
|
|
|
|
|
=cut |
44
|
|
|
|
|
|
|
|
45
|
|
|
|
|
|
|
|
46
|
|
|
|
|
|
|
1; |