File Coverage

blib/lib/Biblio/Zotero/DB/Schema/Result/Annotation.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   45872 use utf8;
  13         41  
  13         90  
2             package Biblio::Zotero::DB::Schema::Result::Annotation;
3             $Biblio::Zotero::DB::Schema::Result::Annotation::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   832 use strict;
  13         25  
  13         495  
9 13     13   97 use warnings;
  13         28  
  13         523  
10              
11 13     13   75 use base 'DBIx::Class::Core';
  13         27  
  13         4915  
12              
13              
14             __PACKAGE__->table("annotations");
15              
16              
17             __PACKAGE__->add_columns(
18             "annotationid",
19             { data_type => "integer", is_auto_increment => 1, is_nullable => 0 },
20             "itemid",
21             { data_type => "int", is_foreign_key => 1, is_nullable => 1 },
22             "parent",
23             { data_type => "text", is_nullable => 1 },
24             "textnode",
25             { data_type => "int", is_nullable => 1 },
26             "offset",
27             { data_type => "int", is_nullable => 1 },
28             "x",
29             { data_type => "int", is_nullable => 1 },
30             "y",
31             { data_type => "int", is_nullable => 1 },
32             "cols",
33             { data_type => "int", is_nullable => 1 },
34             "rows",
35             { data_type => "int", is_nullable => 1 },
36             "text",
37             { data_type => "text", is_nullable => 1 },
38             "collapsed",
39             { data_type => "bool", is_nullable => 1 },
40             "datemodified",
41             { data_type => "date", is_nullable => 1 },
42             );
43              
44              
45             __PACKAGE__->set_primary_key("annotationid");
46              
47              
48             __PACKAGE__->belongs_to(
49             "itemid",
50             "Biblio::Zotero::DB::Schema::Result::ItemAttachment",
51             { itemid => "itemid" },
52             {
53             is_deferrable => 0,
54             join_type => "LEFT",
55             on_delete => "NO ACTION",
56             on_update => "NO ACTION",
57             },
58             );
59              
60              
61             # Created by DBIx::Class::Schema::Loader v0.07035 @ 2013-07-02 23:02:38
62             # DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:bkpihzjbzbkl4nEfJIEVsg
63              
64              
65             # You can replace this text with custom code or comments, and it will be preserved on regeneration
66             1;
67              
68             __END__