line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
13
|
|
|
13
|
|
10604
|
use utf8; |
|
13
|
|
|
|
|
31
|
|
|
13
|
|
|
|
|
84
|
|
2
|
|
|
|
|
|
|
package Biblio::Zotero::DB::Schema::Result::Highlight; |
3
|
|
|
|
|
|
|
$Biblio::Zotero::DB::Schema::Result::Highlight::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
|
|
711
|
use strict; |
|
13
|
|
|
|
|
28
|
|
|
13
|
|
|
|
|
336
|
|
9
|
13
|
|
|
13
|
|
64
|
use warnings; |
|
13
|
|
|
|
|
27
|
|
|
13
|
|
|
|
|
334
|
|
10
|
|
|
|
|
|
|
|
11
|
13
|
|
|
13
|
|
64
|
use base 'DBIx::Class::Core'; |
|
13
|
|
|
|
|
22
|
|
|
13
|
|
|
|
|
3542
|
|
12
|
|
|
|
|
|
|
|
13
|
|
|
|
|
|
|
|
14
|
|
|
|
|
|
|
__PACKAGE__->table("highlights"); |
15
|
|
|
|
|
|
|
|
16
|
|
|
|
|
|
|
|
17
|
|
|
|
|
|
|
__PACKAGE__->add_columns( |
18
|
|
|
|
|
|
|
"highlightid", |
19
|
|
|
|
|
|
|
{ data_type => "integer", is_auto_increment => 1, is_nullable => 0 }, |
20
|
|
|
|
|
|
|
"itemid", |
21
|
|
|
|
|
|
|
{ data_type => "integer", is_foreign_key => 1, is_nullable => 1 }, |
22
|
|
|
|
|
|
|
"startparent", |
23
|
|
|
|
|
|
|
{ data_type => "text", is_nullable => 1 }, |
24
|
|
|
|
|
|
|
"starttextnode", |
25
|
|
|
|
|
|
|
{ data_type => "int", is_nullable => 1 }, |
26
|
|
|
|
|
|
|
"startoffset", |
27
|
|
|
|
|
|
|
{ data_type => "int", is_nullable => 1 }, |
28
|
|
|
|
|
|
|
"endparent", |
29
|
|
|
|
|
|
|
{ data_type => "text", is_nullable => 1 }, |
30
|
|
|
|
|
|
|
"endtextnode", |
31
|
|
|
|
|
|
|
{ data_type => "int", is_nullable => 1 }, |
32
|
|
|
|
|
|
|
"endoffset", |
33
|
|
|
|
|
|
|
{ data_type => "int", is_nullable => 1 }, |
34
|
|
|
|
|
|
|
"datemodified", |
35
|
|
|
|
|
|
|
{ data_type => "date", is_nullable => 1 }, |
36
|
|
|
|
|
|
|
); |
37
|
|
|
|
|
|
|
|
38
|
|
|
|
|
|
|
|
39
|
|
|
|
|
|
|
__PACKAGE__->set_primary_key("highlightid"); |
40
|
|
|
|
|
|
|
|
41
|
|
|
|
|
|
|
|
42
|
|
|
|
|
|
|
__PACKAGE__->belongs_to( |
43
|
|
|
|
|
|
|
"itemid", |
44
|
|
|
|
|
|
|
"Biblio::Zotero::DB::Schema::Result::ItemAttachment", |
45
|
|
|
|
|
|
|
{ itemid => "itemid" }, |
46
|
|
|
|
|
|
|
{ |
47
|
|
|
|
|
|
|
is_deferrable => 0, |
48
|
|
|
|
|
|
|
join_type => "LEFT", |
49
|
|
|
|
|
|
|
on_delete => "NO ACTION", |
50
|
|
|
|
|
|
|
on_update => "NO ACTION", |
51
|
|
|
|
|
|
|
}, |
52
|
|
|
|
|
|
|
); |
53
|
|
|
|
|
|
|
|
54
|
|
|
|
|
|
|
|
55
|
|
|
|
|
|
|
# Created by DBIx::Class::Schema::Loader v0.07035 @ 2013-07-02 23:02:38 |
56
|
|
|
|
|
|
|
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:wiTeSJgvG2XgUg9h/KyvkA |
57
|
|
|
|
|
|
|
|
58
|
|
|
|
|
|
|
|
59
|
|
|
|
|
|
|
# You can replace this text with custom code or comments, and it will be preserved on regeneration |
60
|
|
|
|
|
|
|
1; |
61
|
|
|
|
|
|
|
|
62
|
|
|
|
|
|
|
__END__ |