File Coverage

blib/lib/MojoMojo/Schema/Result/Preference.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             package MojoMojo::Schema::Result::Preference;
2              
3 40     40   43835 use strict;
  40         111  
  40         1060  
4 40     40   259 use warnings;
  40         98  
  40         1039  
5              
6 40     40   215 use parent qw/MojoMojo::Schema::Base::Result/;
  40         93  
  40         242  
7              
8             __PACKAGE__->load_components( "Core" );
9             __PACKAGE__->table("preference");
10             __PACKAGE__->add_columns(
11             "prefkey", { data_type => "VARCHAR", is_nullable => 0, size => 100 },
12             "prefvalue", { data_type => "VARCHAR", is_nullable => 1, size => 100 },
13             );
14             __PACKAGE__->set_primary_key("prefkey");
15              
16             =head1 NAME
17              
18             MojoMojo::Schema::Result::Preference - store preferences
19              
20             =head1 AUTHOR
21              
22             Marcus Ramberg <mramberg@cpan.org>
23              
24             =head1 LICENSE
25              
26             This library is free software. You can redistribute it and/or modify
27             it under the same terms as Perl itself.
28              
29             =cut
30              
31              
32             1;