line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
|
2
|
|
|
|
|
|
|
# Created by DBIx::Class::Schema::Loader |
3
|
|
|
|
|
|
|
# DO NOT MODIFY THE FIRST PART OF THIS FILE |
4
|
|
|
|
|
|
|
|
5
|
|
|
|
|
|
|
use strict; |
6
|
4
|
|
|
4
|
|
1809
|
use warnings; |
|
4
|
|
|
|
|
10
|
|
|
4
|
|
|
|
|
101
|
|
7
|
4
|
|
|
4
|
|
18
|
|
|
4
|
|
|
|
|
7
|
|
|
4
|
|
|
|
|
92
|
|
8
|
|
|
|
|
|
|
use base 'DBIx::Class::Core'; |
9
|
4
|
|
|
4
|
|
19
|
|
|
4
|
|
|
|
|
18
|
|
|
4
|
|
|
|
|
737
|
|
10
|
|
|
|
|
|
|
|
11
|
|
|
|
|
|
|
=head1 NAME |
12
|
|
|
|
|
|
|
|
13
|
|
|
|
|
|
|
Bracket::Schema::Result::Token |
14
|
|
|
|
|
|
|
|
15
|
|
|
|
|
|
|
=cut |
16
|
|
|
|
|
|
|
|
17
|
|
|
|
|
|
|
__PACKAGE__->table("token"); |
18
|
|
|
|
|
|
|
|
19
|
|
|
|
|
|
|
=head1 ACCESSORS |
20
|
|
|
|
|
|
|
|
21
|
|
|
|
|
|
|
=head2 player |
22
|
|
|
|
|
|
|
|
23
|
|
|
|
|
|
|
data_type: INT |
24
|
|
|
|
|
|
|
default_value: undef |
25
|
|
|
|
|
|
|
is_foreign_key: 1 |
26
|
|
|
|
|
|
|
is_nullable: 0 |
27
|
|
|
|
|
|
|
size: 11 |
28
|
|
|
|
|
|
|
|
29
|
|
|
|
|
|
|
=head2 token |
30
|
|
|
|
|
|
|
|
31
|
|
|
|
|
|
|
data_type: VARCHAR |
32
|
|
|
|
|
|
|
default_value: undef |
33
|
|
|
|
|
|
|
is_nullable: 0 |
34
|
|
|
|
|
|
|
size: 64 |
35
|
|
|
|
|
|
|
|
36
|
|
|
|
|
|
|
=head2 type |
37
|
|
|
|
|
|
|
|
38
|
|
|
|
|
|
|
data_type: VARCHAR |
39
|
|
|
|
|
|
|
default_value: undef |
40
|
|
|
|
|
|
|
is_nullable: 0 |
41
|
|
|
|
|
|
|
size: 64 |
42
|
|
|
|
|
|
|
|
43
|
|
|
|
|
|
|
=cut |
44
|
|
|
|
|
|
|
|
45
|
|
|
|
|
|
|
__PACKAGE__->add_columns( |
46
|
|
|
|
|
|
|
"player", |
47
|
|
|
|
|
|
|
{ |
48
|
|
|
|
|
|
|
data_type => "INT", |
49
|
|
|
|
|
|
|
default_value => undef, |
50
|
|
|
|
|
|
|
is_foreign_key => 1, |
51
|
|
|
|
|
|
|
is_nullable => 0, |
52
|
|
|
|
|
|
|
size => 11, |
53
|
|
|
|
|
|
|
}, |
54
|
|
|
|
|
|
|
"token", |
55
|
|
|
|
|
|
|
{ |
56
|
|
|
|
|
|
|
data_type => "VARCHAR", |
57
|
|
|
|
|
|
|
default_value => undef, |
58
|
|
|
|
|
|
|
is_nullable => 0, |
59
|
|
|
|
|
|
|
size => 64, |
60
|
|
|
|
|
|
|
}, |
61
|
|
|
|
|
|
|
"type", |
62
|
|
|
|
|
|
|
{ |
63
|
|
|
|
|
|
|
data_type => "VARCHAR", |
64
|
|
|
|
|
|
|
default_value => undef, |
65
|
|
|
|
|
|
|
is_nullable => 0, |
66
|
|
|
|
|
|
|
size => 64, |
67
|
|
|
|
|
|
|
}, |
68
|
|
|
|
|
|
|
); |
69
|
|
|
|
|
|
|
__PACKAGE__->set_primary_key("token", "player"); |
70
|
|
|
|
|
|
|
|
71
|
|
|
|
|
|
|
=head1 RELATIONS |
72
|
|
|
|
|
|
|
|
73
|
|
|
|
|
|
|
=head2 player |
74
|
|
|
|
|
|
|
|
75
|
|
|
|
|
|
|
Type: belongs_to |
76
|
|
|
|
|
|
|
|
77
|
|
|
|
|
|
|
Related object: L<Bracket::Schema::Result::Player> |
78
|
|
|
|
|
|
|
|
79
|
|
|
|
|
|
|
=cut |
80
|
|
|
|
|
|
|
|
81
|
|
|
|
|
|
|
__PACKAGE__->belongs_to( |
82
|
|
|
|
|
|
|
"player", |
83
|
|
|
|
|
|
|
"Bracket::Schema::Result::Player", |
84
|
|
|
|
|
|
|
{ id => "player" }, |
85
|
|
|
|
|
|
|
{}, |
86
|
|
|
|
|
|
|
); |
87
|
|
|
|
|
|
|
|
88
|
|
|
|
|
|
|
|
89
|
|
|
|
|
|
|
# Created by DBIx::Class::Schema::Loader v0.05003 @ 2010-03-02 17:10:27 |
90
|
|
|
|
|
|
|
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:hFFgfGDEUtR7ndqRU61GPQ |
91
|
|
|
|
|
|
|
|
92
|
|
|
|
|
|
|
|
93
|
|
|
|
|
|
|
# You can replace this text with custom content, and it will be preserved on regeneration |
94
|
|
|
|
|
|
|
1; |