line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
13
|
|
|
13
|
|
16907
|
use utf8; |
|
13
|
|
|
|
|
33
|
|
|
13
|
|
|
|
|
99
|
|
2
|
|
|
|
|
|
|
package Biblio::Zotero::DB::Schema::Result::Proxy; |
3
|
|
|
|
|
|
|
$Biblio::Zotero::DB::Schema::Result::Proxy::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
|
|
695
|
use strict; |
|
13
|
|
|
|
|
32
|
|
|
13
|
|
|
|
|
377
|
|
9
|
13
|
|
|
13
|
|
74
|
use warnings; |
|
13
|
|
|
|
|
30
|
|
|
13
|
|
|
|
|
417
|
|
10
|
|
|
|
|
|
|
|
11
|
13
|
|
|
13
|
|
70
|
use base 'DBIx::Class::Core'; |
|
13
|
|
|
|
|
39
|
|
|
13
|
|
|
|
|
2608
|
|
12
|
|
|
|
|
|
|
|
13
|
|
|
|
|
|
|
|
14
|
|
|
|
|
|
|
__PACKAGE__->table("proxies"); |
15
|
|
|
|
|
|
|
|
16
|
|
|
|
|
|
|
|
17
|
|
|
|
|
|
|
__PACKAGE__->add_columns( |
18
|
|
|
|
|
|
|
"proxyid", |
19
|
|
|
|
|
|
|
{ data_type => "integer", is_auto_increment => 1, is_nullable => 0 }, |
20
|
|
|
|
|
|
|
"multihost", |
21
|
|
|
|
|
|
|
{ data_type => "int", is_nullable => 1 }, |
22
|
|
|
|
|
|
|
"autoassociate", |
23
|
|
|
|
|
|
|
{ data_type => "int", is_nullable => 1 }, |
24
|
|
|
|
|
|
|
"scheme", |
25
|
|
|
|
|
|
|
{ data_type => "text", is_nullable => 1 }, |
26
|
|
|
|
|
|
|
); |
27
|
|
|
|
|
|
|
|
28
|
|
|
|
|
|
|
|
29
|
|
|
|
|
|
|
__PACKAGE__->set_primary_key("proxyid"); |
30
|
|
|
|
|
|
|
|
31
|
|
|
|
|
|
|
|
32
|
|
|
|
|
|
|
__PACKAGE__->has_many( |
33
|
|
|
|
|
|
|
"proxy_hosts", |
34
|
|
|
|
|
|
|
"Biblio::Zotero::DB::Schema::Result::ProxyHost", |
35
|
|
|
|
|
|
|
{ "foreign.proxyid" => "self.proxyid" }, |
36
|
|
|
|
|
|
|
{ cascade_copy => 0, cascade_delete => 0 }, |
37
|
|
|
|
|
|
|
); |
38
|
|
|
|
|
|
|
|
39
|
|
|
|
|
|
|
|
40
|
|
|
|
|
|
|
# Created by DBIx::Class::Schema::Loader v0.07035 @ 2013-07-02 23:02:38 |
41
|
|
|
|
|
|
|
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:GMlKwJS8GVtU4snBIaXjmw |
42
|
|
|
|
|
|
|
|
43
|
|
|
|
|
|
|
|
44
|
|
|
|
|
|
|
# You can replace this text with custom code or comments, and it will be preserved on regeneration |
45
|
|
|
|
|
|
|
1; |
46
|
|
|
|
|
|
|
|
47
|
|
|
|
|
|
|
__END__ |