File Coverage

blib/lib/Bracket/Schema/Result/Session.pm
Criterion Covered Total %
statement 9 9 100.0
branch n/a
condition n/a
subroutine 3 3 100.0
pod n/a
total 12 12 100.0


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