line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
package DBIx::Class::Schema::Loader::Table; |
2
|
|
|
|
|
|
|
|
3
|
17
|
|
|
17
|
|
126
|
use strict; |
|
17
|
|
|
|
|
53
|
|
|
17
|
|
|
|
|
514
|
|
4
|
17
|
|
|
17
|
|
93
|
use warnings; |
|
17
|
|
|
|
|
49
|
|
|
17
|
|
|
|
|
491
|
|
5
|
17
|
|
|
17
|
|
111
|
use base 'DBIx::Class::Schema::Loader::DBObject'; |
|
17
|
|
|
|
|
53
|
|
|
17
|
|
|
|
|
8847
|
|
6
|
17
|
|
|
17
|
|
134
|
use mro 'c3'; |
|
17
|
|
|
|
|
54
|
|
|
17
|
|
|
|
|
75
|
|
7
|
|
|
|
|
|
|
|
8
|
|
|
|
|
|
|
=head1 NAME |
9
|
|
|
|
|
|
|
|
10
|
|
|
|
|
|
|
DBIx::Class::Schema::Loader::Table - Class for Tables in |
11
|
|
|
|
|
|
|
L |
12
|
|
|
|
|
|
|
|
13
|
|
|
|
|
|
|
=head1 DESCRIPTION |
14
|
|
|
|
|
|
|
|
15
|
|
|
|
|
|
|
Inherits from L. Stringifies to |
16
|
|
|
|
|
|
|
C<< $table->name >>. |
17
|
|
|
|
|
|
|
|
18
|
|
|
|
|
|
|
=head1 SEE ALSO |
19
|
|
|
|
|
|
|
|
20
|
|
|
|
|
|
|
L, L, L |
21
|
|
|
|
|
|
|
|
22
|
|
|
|
|
|
|
=head1 AUTHORS |
23
|
|
|
|
|
|
|
|
24
|
|
|
|
|
|
|
See L. |
25
|
|
|
|
|
|
|
|
26
|
|
|
|
|
|
|
=head1 LICENSE |
27
|
|
|
|
|
|
|
|
28
|
|
|
|
|
|
|
This library is free software; you can redistribute it and/or modify it under |
29
|
|
|
|
|
|
|
the same terms as Perl itself. |
30
|
|
|
|
|
|
|
|
31
|
|
|
|
|
|
|
=cut |
32
|
|
|
|
|
|
|
|
33
|
|
|
|
|
|
|
1; |
34
|
|
|
|
|
|
|
# vim:et sts=4 sw=4 tw=0: |