File Coverage

blib/lib/Biblio/Zotero/DB/Schema/Result/ItemSeeAlso.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   11135 use utf8;
  13         32  
  13         91  
2             package Biblio::Zotero::DB::Schema::Result::ItemSeeAlso;
3             $Biblio::Zotero::DB::Schema::Result::ItemSeeAlso::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   687 use strict;
  13         26  
  13         359  
9 13     13   68 use warnings;
  13         251  
  13         393  
10              
11 13     13   70 use base 'DBIx::Class::Core';
  13         26  
  13         2804  
12              
13              
14             __PACKAGE__->table("itemSeeAlso");
15              
16              
17             __PACKAGE__->add_columns(
18             "itemid",
19             { data_type => "int", is_foreign_key => 1, is_nullable => 0 },
20             "linkeditemid",
21             { data_type => "int", is_foreign_key => 1, is_nullable => 0 },
22             );
23              
24              
25             __PACKAGE__->set_primary_key("itemid", "linkeditemid");
26              
27              
28             __PACKAGE__->belongs_to(
29             "itemid",
30             "Biblio::Zotero::DB::Schema::Result::Item",
31             { itemid => "itemid" },
32             { is_deferrable => 0, on_delete => "NO ACTION", on_update => "NO ACTION" },
33             );
34              
35              
36             __PACKAGE__->belongs_to(
37             "linkeditemid",
38             "Biblio::Zotero::DB::Schema::Result::Item",
39             { itemid => "linkeditemid" },
40             { is_deferrable => 0, on_delete => "NO ACTION", on_update => "NO ACTION" },
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:D4vyU+GzVOfLrAzMd9QT/w
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__