File Coverage

blib/lib/Biblio/Zotero/DB/Schema/Result/Relation.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   11221 use utf8;
  13         29  
  13         98  
2             package Biblio::Zotero::DB::Schema::Result::Relation;
3             $Biblio::Zotero::DB::Schema::Result::Relation::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   690 use strict;
  13         48  
  13         382  
9 13     13   72 use warnings;
  13         24  
  13         401  
10              
11 13     13   74 use base 'DBIx::Class::Core';
  13         27  
  13         2506  
12              
13              
14             __PACKAGE__->table("relations");
15              
16              
17             __PACKAGE__->add_columns(
18             "libraryid",
19             { data_type => "int", is_nullable => 0 },
20             "subject",
21             { data_type => "text", is_nullable => 0 },
22             "predicate",
23             { data_type => "text", is_nullable => 0 },
24             "object",
25             { data_type => "text", is_nullable => 0 },
26             "clientdatemodified",
27             {
28             data_type => "timestamp",
29             default_value => \"current_timestamp",
30             is_nullable => 0,
31             },
32             );
33              
34              
35             __PACKAGE__->set_primary_key("subject", "predicate", "object");
36              
37              
38             # Created by DBIx::Class::Schema::Loader v0.07035 @ 2013-07-02 23:02:38
39             # DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:kJd1BrKNRtrMybVuwK65xg
40              
41              
42             # You can replace this text with custom code or comments, and it will be preserved on regeneration
43             1;
44              
45             __END__