File Coverage

blib/lib/Biblio/Zotero/DB/Schema/Result/Charset.pm
Criterion Covered Total %
statement 12 12 100.0
branch n/a
condition n/a
subroutine 4 4 100.0
pod n/a
total 16 16 100.0


line stmt bran cond sub pod time code
1 13     13   13407 use utf8;
  13         35  
  13         190  
2             package Biblio::Zotero::DB::Schema::Result::Charset;
3             $Biblio::Zotero::DB::Schema::Result::Charset::VERSION = '0.003';
4             # Created by DBIx::Class::Schema::Loader
5             # DO NOT MODIFY THE FIRST PART OF THIS FILE
6              
7              
8 13     13   706 use strict;
  13         27  
  13         403  
9 13     13   69 use warnings;
  13         28  
  13         395  
10              
11 13     13   76 use base 'DBIx::Class::Core';
  13         39  
  13         2365  
12              
13              
14             __PACKAGE__->table("charsets");
15              
16              
17             __PACKAGE__->add_columns(
18             "charsetid",
19             { data_type => "integer", is_auto_increment => 1, is_nullable => 0 },
20             "charset",
21             { data_type => "text", is_nullable => 1 },
22             );
23              
24              
25             __PACKAGE__->set_primary_key("charsetid");
26              
27              
28             __PACKAGE__->add_unique_constraint("charset_unique", ["charset"]);
29              
30              
31             # Created by DBIx::Class::Schema::Loader v0.07035 @ 2013-07-02 23:02:38
32             # DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:g0JeuGcf5tbfRszBwN3D+w
33              
34              
35             # You can replace this text with custom code or comments, and it will be preserved on regeneration
36             1;
37              
38             __END__