File Coverage

blib/lib/Biblio/Zotero/DB/Schema/Result/ProxyHost.pm
Criterion Covered Total %
statement 12 12 100.0
branch n/a
condition n/a
subroutine 4 4 100.0
pod n/a
total 16 16 100.0


line stmt bran cond sub pod time code
1 13     13   11483 use utf8;
  13         33  
  13         88  
2             package Biblio::Zotero::DB::Schema::Result::ProxyHost;
3             $Biblio::Zotero::DB::Schema::Result::ProxyHost::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         27  
  13         705  
9 13     13   66 use warnings;
  13         28  
  13         389  
10              
11 13     13   83 use base 'DBIx::Class::Core';
  13         28  
  13         2656  
12              
13              
14             __PACKAGE__->table("proxyHosts");
15              
16              
17             __PACKAGE__->add_columns(
18             "hostid",
19             { data_type => "integer", is_auto_increment => 1, is_nullable => 0 },
20             "proxyid",
21             { data_type => "integer", is_foreign_key => 1, is_nullable => 1 },
22             "hostname",
23             { data_type => "text", is_nullable => 1 },
24             );
25              
26              
27             __PACKAGE__->set_primary_key("hostid");
28              
29              
30             __PACKAGE__->belongs_to(
31             "proxyid",
32             "Biblio::Zotero::DB::Schema::Result::Proxy",
33             { proxyid => "proxyid" },
34             {
35             is_deferrable => 0,
36             join_type => "LEFT",
37             on_delete => "NO ACTION",
38             on_update => "NO ACTION",
39             },
40             );
41              
42              
43             # Created by DBIx::Class::Schema::Loader v0.07035 @ 2013-07-02 23:02:38
44             # DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:xIAGHXJ3cdldqMPb8gE8YQ
45              
46              
47             # You can replace this text with custom code or comments, and it will be preserved on regeneration
48             1;
49              
50             __END__