line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
13
|
|
|
13
|
|
22562
|
use utf8; |
|
13
|
|
|
|
|
119
|
|
|
13
|
|
|
|
|
127
|
|
2
|
|
|
|
|
|
|
package Biblio::Zotero::DB::Schema::Result::Library; |
3
|
|
|
|
|
|
|
$Biblio::Zotero::DB::Schema::Result::Library::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
|
|
|
|
|
81
|
|
|
13
|
|
|
|
|
387
|
|
9
|
13
|
|
|
13
|
|
68
|
use warnings; |
|
13
|
|
|
|
|
26
|
|
|
13
|
|
|
|
|
358
|
|
10
|
|
|
|
|
|
|
|
11
|
13
|
|
|
13
|
|
64
|
use base 'DBIx::Class::Core'; |
|
13
|
|
|
|
|
24
|
|
|
13
|
|
|
|
|
3250
|
|
12
|
|
|
|
|
|
|
|
13
|
|
|
|
|
|
|
|
14
|
|
|
|
|
|
|
__PACKAGE__->table("libraries"); |
15
|
|
|
|
|
|
|
|
16
|
|
|
|
|
|
|
|
17
|
|
|
|
|
|
|
__PACKAGE__->add_columns( |
18
|
|
|
|
|
|
|
"libraryid", |
19
|
|
|
|
|
|
|
{ data_type => "integer", is_auto_increment => 1, is_nullable => 0 }, |
20
|
|
|
|
|
|
|
"librarytype", |
21
|
|
|
|
|
|
|
{ data_type => "text", is_nullable => 0 }, |
22
|
|
|
|
|
|
|
); |
23
|
|
|
|
|
|
|
|
24
|
|
|
|
|
|
|
|
25
|
|
|
|
|
|
|
__PACKAGE__->set_primary_key("libraryid"); |
26
|
|
|
|
|
|
|
|
27
|
|
|
|
|
|
|
|
28
|
|
|
|
|
|
|
__PACKAGE__->might_have( |
29
|
|
|
|
|
|
|
"group", |
30
|
|
|
|
|
|
|
"Biblio::Zotero::DB::Schema::Result::Group", |
31
|
|
|
|
|
|
|
{ "foreign.libraryid" => "self.libraryid" }, |
32
|
|
|
|
|
|
|
{ cascade_copy => 0, cascade_delete => 0 }, |
33
|
|
|
|
|
|
|
); |
34
|
|
|
|
|
|
|
|
35
|
|
|
|
|
|
|
|
36
|
|
|
|
|
|
|
__PACKAGE__->has_many( |
37
|
|
|
|
|
|
|
"items", |
38
|
|
|
|
|
|
|
"Biblio::Zotero::DB::Schema::Result::Item", |
39
|
|
|
|
|
|
|
{ "foreign.libraryid" => "self.libraryid" }, |
40
|
|
|
|
|
|
|
{ cascade_copy => 0, cascade_delete => 0 }, |
41
|
|
|
|
|
|
|
); |
42
|
|
|
|
|
|
|
|
43
|
|
|
|
|
|
|
|
44
|
|
|
|
|
|
|
# Created by DBIx::Class::Schema::Loader v0.07035 @ 2013-07-02 23:02:38 |
45
|
|
|
|
|
|
|
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:97town+aPZwbrbi2nYaQZQ |
46
|
|
|
|
|
|
|
|
47
|
|
|
|
|
|
|
|
48
|
|
|
|
|
|
|
# You can replace this text with custom code or comments, and it will be preserved on regeneration |
49
|
|
|
|
|
|
|
1; |
50
|
|
|
|
|
|
|
|
51
|
|
|
|
|
|
|
__END__ |