line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
package Test::DBIx::Class::Example::Schema::Result; { |
2
|
|
|
|
|
|
|
|
3
|
15
|
|
|
15
|
|
76
|
use base 'DBIx::Class'; |
|
15
|
|
|
|
|
19
|
|
|
15
|
|
|
|
|
1235
|
|
4
|
|
|
|
|
|
|
|
5
|
|
|
|
|
|
|
__PACKAGE__->load_components(qw/ |
6
|
|
|
|
|
|
|
PK::Auto |
7
|
|
|
|
|
|
|
UUIDColumns |
8
|
|
|
|
|
|
|
TimeStamp |
9
|
|
|
|
|
|
|
InflateColumn::DateTime |
10
|
|
|
|
|
|
|
Core |
11
|
|
|
|
|
|
|
/); |
12
|
|
|
|
|
|
|
|
13
|
|
|
|
|
|
|
__PACKAGE__->uuid_class('::Data::UUID'); |
14
|
|
|
|
|
|
|
} 1 |
15
|
|
|
|
|
|
|
|
16
|
|
|
|
|
|
|
__END__ |
17
|
|
|
|
|
|
|
|
18
|
|
|
|
|
|
|
=head1 NAME |
19
|
|
|
|
|
|
|
|
20
|
|
|
|
|
|
|
Test::DBIx::Class::Example::Schema::Result - The base result class |
21
|
|
|
|
|
|
|
|
22
|
|
|
|
|
|
|
=head1 SYNOPSIS |
23
|
|
|
|
|
|
|
|
24
|
|
|
|
|
|
|
use base 'Test::DBIx::Class::Example::Schema::Result'; |
25
|
|
|
|
|
|
|
|
26
|
|
|
|
|
|
|
=head1 DESCRIPTION |
27
|
|
|
|
|
|
|
|
28
|
|
|
|
|
|
|
All Result classes will inherit from this. |
29
|
|
|
|
|
|
|
|
30
|
|
|
|
|
|
|
=head1 SEE ALSO |
31
|
|
|
|
|
|
|
|
32
|
|
|
|
|
|
|
The following modules or resources may be of interest. |
33
|
|
|
|
|
|
|
|
34
|
|
|
|
|
|
|
L<DBIx::Class> |
35
|
|
|
|
|
|
|
|
36
|
|
|
|
|
|
|
=head1 AUTHOR |
37
|
|
|
|
|
|
|
|
38
|
|
|
|
|
|
|
John Napiorkowski C<< <jjnapiork@cpan.org> >> |
39
|
|
|
|
|
|
|
|
40
|
|
|
|
|
|
|
=head1 COPYRIGHT & LICENSE |
41
|
|
|
|
|
|
|
|
42
|
|
|
|
|
|
|
Copyright 2009, John Napiorkowski C<< <jjnapiork@cpan.org> >> |
43
|
|
|
|
|
|
|
|
44
|
|
|
|
|
|
|
This program is free software; you can redistribute it and/or modify |
45
|
|
|
|
|
|
|
it under the same terms as Perl itself. |
46
|
|
|
|
|
|
|
|
47
|
|
|
|
|
|
|
=cut |
48
|
|
|
|
|
|
|
|