| line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
|
1
|
|
|
|
|
|
|
package Bracket::Schema::Result::Session; |
|
2
|
|
|
|
|
|
|
|
|
3
|
|
|
|
|
|
|
# Created by DBIx::Class::Schema::Loader |
|
4
|
|
|
|
|
|
|
# DO NOT MODIFY THE FIRST PART OF THIS FILE |
|
5
|
|
|
|
|
|
|
|
|
6
|
1
|
|
|
1
|
|
665
|
use strict; |
|
|
1
|
|
|
|
|
2
|
|
|
|
1
|
|
|
|
|
33
|
|
|
7
|
1
|
|
|
1
|
|
6
|
use warnings; |
|
|
1
|
|
|
|
|
1
|
|
|
|
1
|
|
|
|
|
26
|
|
|
8
|
|
|
|
|
|
|
|
|
9
|
1
|
|
|
1
|
|
4
|
use base 'DBIx::Class::Core'; |
|
|
1
|
|
|
|
|
2
|
|
|
|
1
|
|
|
|
|
178
|
|
|
10
|
|
|
|
|
|
|
|
|
11
|
|
|
|
|
|
|
|
|
12
|
|
|
|
|
|
|
=head1 NAME |
|
13
|
|
|
|
|
|
|
|
|
14
|
|
|
|
|
|
|
Bracket::Schema::Result::Session |
|
15
|
|
|
|
|
|
|
|
|
16
|
|
|
|
|
|
|
=cut |
|
17
|
|
|
|
|
|
|
|
|
18
|
|
|
|
|
|
|
__PACKAGE__->table("session"); |
|
19
|
|
|
|
|
|
|
|
|
20
|
|
|
|
|
|
|
=head1 ACCESSORS |
|
21
|
|
|
|
|
|
|
|
|
22
|
|
|
|
|
|
|
=head2 id |
|
23
|
|
|
|
|
|
|
|
|
24
|
|
|
|
|
|
|
data_type: CHAR |
|
25
|
|
|
|
|
|
|
default_value: undef |
|
26
|
|
|
|
|
|
|
is_nullable: 0 |
|
27
|
|
|
|
|
|
|
size: 72 |
|
28
|
|
|
|
|
|
|
|
|
29
|
|
|
|
|
|
|
=head2 session_data |
|
30
|
|
|
|
|
|
|
|
|
31
|
|
|
|
|
|
|
data_type: TEXT |
|
32
|
|
|
|
|
|
|
default_value: undef |
|
33
|
|
|
|
|
|
|
is_nullable: 1 |
|
34
|
|
|
|
|
|
|
size: 65535 |
|
35
|
|
|
|
|
|
|
|
|
36
|
|
|
|
|
|
|
=head2 expires |
|
37
|
|
|
|
|
|
|
|
|
38
|
|
|
|
|
|
|
data_type: INT |
|
39
|
|
|
|
|
|
|
default_value: undef |
|
40
|
|
|
|
|
|
|
is_nullable: 1 |
|
41
|
|
|
|
|
|
|
size: 11 |
|
42
|
|
|
|
|
|
|
|
|
43
|
|
|
|
|
|
|
=cut |
|
44
|
|
|
|
|
|
|
|
|
45
|
|
|
|
|
|
|
__PACKAGE__->add_columns( |
|
46
|
|
|
|
|
|
|
"id", |
|
47
|
|
|
|
|
|
|
{ data_type => "CHAR", default_value => undef, is_nullable => 0, size => 72 }, |
|
48
|
|
|
|
|
|
|
"session_data", |
|
49
|
|
|
|
|
|
|
{ |
|
50
|
|
|
|
|
|
|
data_type => "TEXT", |
|
51
|
|
|
|
|
|
|
default_value => undef, |
|
52
|
|
|
|
|
|
|
is_nullable => 1, |
|
53
|
|
|
|
|
|
|
size => 65535, |
|
54
|
|
|
|
|
|
|
}, |
|
55
|
|
|
|
|
|
|
"expires", |
|
56
|
|
|
|
|
|
|
{ data_type => "INT", default_value => undef, is_nullable => 1, size => 11 }, |
|
57
|
|
|
|
|
|
|
); |
|
58
|
|
|
|
|
|
|
__PACKAGE__->set_primary_key("id"); |
|
59
|
|
|
|
|
|
|
|
|
60
|
|
|
|
|
|
|
|
|
61
|
|
|
|
|
|
|
# Created by DBIx::Class::Schema::Loader v0.05003 @ 2010-03-02 09:36:49 |
|
62
|
|
|
|
|
|
|
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:x4DzAiFfNb9AYzwhu+NKHA |
|
63
|
|
|
|
|
|
|
|
|
64
|
|
|
|
|
|
|
|
|
65
|
|
|
|
|
|
|
# You can replace this text with custom content, and it will be preserved on regeneration |
|
66
|
|
|
|
|
|
|
1; |