line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
13
|
|
|
13
|
|
11501
|
use utf8; |
|
13
|
|
|
|
|
34
|
|
|
13
|
|
|
|
|
102
|
|
2
|
|
|
|
|
|
|
package Biblio::Zotero::DB::Schema::Result::TransactionLog; |
3
|
|
|
|
|
|
|
$Biblio::Zotero::DB::Schema::Result::TransactionLog::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
|
|
705
|
use strict; |
|
13
|
|
|
|
|
31
|
|
|
13
|
|
|
|
|
398
|
|
9
|
13
|
|
|
13
|
|
70
|
use warnings; |
|
13
|
|
|
|
|
27
|
|
|
13
|
|
|
|
|
369
|
|
10
|
|
|
|
|
|
|
|
11
|
13
|
|
|
13
|
|
71
|
use base 'DBIx::Class::Core'; |
|
13
|
|
|
|
|
30
|
|
|
13
|
|
|
|
|
2698
|
|
12
|
|
|
|
|
|
|
|
13
|
|
|
|
|
|
|
|
14
|
|
|
|
|
|
|
__PACKAGE__->table("transactionLog"); |
15
|
|
|
|
|
|
|
|
16
|
|
|
|
|
|
|
|
17
|
|
|
|
|
|
|
__PACKAGE__->add_columns( |
18
|
|
|
|
|
|
|
"transactionid", |
19
|
|
|
|
|
|
|
{ data_type => "int", is_foreign_key => 1, is_nullable => 0 }, |
20
|
|
|
|
|
|
|
"field", |
21
|
|
|
|
|
|
|
{ data_type => "text", is_nullable => 0 }, |
22
|
|
|
|
|
|
|
"value", |
23
|
|
|
|
|
|
|
{ data_type => "none", is_nullable => 0 }, |
24
|
|
|
|
|
|
|
); |
25
|
|
|
|
|
|
|
|
26
|
|
|
|
|
|
|
|
27
|
|
|
|
|
|
|
__PACKAGE__->set_primary_key("transactionid", "field", "value"); |
28
|
|
|
|
|
|
|
|
29
|
|
|
|
|
|
|
|
30
|
|
|
|
|
|
|
__PACKAGE__->belongs_to( |
31
|
|
|
|
|
|
|
"transactionid", |
32
|
|
|
|
|
|
|
"Biblio::Zotero::DB::Schema::Result::Transaction", |
33
|
|
|
|
|
|
|
{ transactionid => "transactionid" }, |
34
|
|
|
|
|
|
|
{ is_deferrable => 0, on_delete => "NO ACTION", on_update => "NO ACTION" }, |
35
|
|
|
|
|
|
|
); |
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:Cngr4Gm1ehpc9GWuHhpIuw |
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__ |