line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
13
|
|
|
13
|
|
23170
|
use utf8; |
|
13
|
|
|
|
|
33
|
|
|
13
|
|
|
|
|
102
|
|
2
|
|
|
|
|
|
|
package Biblio::Zotero::DB::Schema::Result::StorageDeleteLog; |
3
|
|
|
|
|
|
|
$Biblio::Zotero::DB::Schema::Result::StorageDeleteLog::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
|
|
876
|
use strict; |
|
13
|
|
|
|
|
30
|
|
|
13
|
|
|
|
|
440
|
|
9
|
13
|
|
|
13
|
|
77
|
use warnings; |
|
13
|
|
|
|
|
68
|
|
|
13
|
|
|
|
|
386
|
|
10
|
|
|
|
|
|
|
|
11
|
13
|
|
|
13
|
|
83
|
use base 'DBIx::Class::Core'; |
|
13
|
|
|
|
|
29
|
|
|
13
|
|
|
|
|
2554
|
|
12
|
|
|
|
|
|
|
|
13
|
|
|
|
|
|
|
|
14
|
|
|
|
|
|
|
__PACKAGE__->table("storageDeleteLog"); |
15
|
|
|
|
|
|
|
|
16
|
|
|
|
|
|
|
|
17
|
|
|
|
|
|
|
__PACKAGE__->add_columns( |
18
|
|
|
|
|
|
|
"libraryid", |
19
|
|
|
|
|
|
|
{ data_type => "int", is_nullable => 0 }, |
20
|
|
|
|
|
|
|
"key", |
21
|
|
|
|
|
|
|
{ data_type => "text", is_nullable => 0 }, |
22
|
|
|
|
|
|
|
"timestamp", |
23
|
|
|
|
|
|
|
{ data_type => "int", is_nullable => 0 }, |
24
|
|
|
|
|
|
|
); |
25
|
|
|
|
|
|
|
|
26
|
|
|
|
|
|
|
|
27
|
|
|
|
|
|
|
__PACKAGE__->set_primary_key("libraryid", "key"); |
28
|
|
|
|
|
|
|
|
29
|
|
|
|
|
|
|
|
30
|
|
|
|
|
|
|
# Created by DBIx::Class::Schema::Loader v0.07035 @ 2013-07-02 23:02:38 |
31
|
|
|
|
|
|
|
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:3C5gfd4sZ5Ul0QU4FZ8i0A |
32
|
|
|
|
|
|
|
|
33
|
|
|
|
|
|
|
|
34
|
|
|
|
|
|
|
# You can replace this text with custom code or comments, and it will be preserved on regeneration |
35
|
|
|
|
|
|
|
1; |
36
|
|
|
|
|
|
|
|
37
|
|
|
|
|
|
|
__END__ |