File Coverage

blib/lib/Biblio/Zotero/DB/Schema/Result/ItemTypeCreatorType.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   48925 use utf8;
  13         32  
  13         98  
2             package Biblio::Zotero::DB::Schema::Result::ItemTypeCreatorType;
3             $Biblio::Zotero::DB::Schema::Result::ItemTypeCreatorType::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         28  
  13         402  
9 13     13   90 use warnings;
  13         27  
  13         354  
10              
11 13     13   67 use base 'DBIx::Class::Core';
  13         24  
  13         3554  
12              
13              
14             __PACKAGE__->table("itemTypeCreatorTypes");
15              
16              
17             __PACKAGE__->add_columns(
18             "itemtypeid",
19             { data_type => "int", is_foreign_key => 1, is_nullable => 0 },
20             "creatortypeid",
21             { data_type => "int", is_foreign_key => 1, is_nullable => 0 },
22             "primaryfield",
23             { data_type => "int", is_nullable => 1 },
24             );
25              
26              
27             __PACKAGE__->set_primary_key("itemtypeid", "creatortypeid");
28              
29              
30             __PACKAGE__->belongs_to(
31             "creatortypeid",
32             "Biblio::Zotero::DB::Schema::Result::CreatorType",
33             { creatortypeid => "creatortypeid" },
34             { is_deferrable => 0, on_delete => "NO ACTION", on_update => "NO ACTION" },
35             );
36              
37              
38             __PACKAGE__->belongs_to(
39             "itemtypeid",
40             "Biblio::Zotero::DB::Schema::Result::ItemType",
41             { itemtypeid => "itemtypeid" },
42             { is_deferrable => 0, on_delete => "NO ACTION", on_update => "NO ACTION" },
43             );
44              
45              
46             # Created by DBIx::Class::Schema::Loader v0.07035 @ 2013-07-02 23:02:38
47             # DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:JvcW+R0bGdpQ2A7Uw7EhsQ
48              
49              
50             # You can replace this text with custom code or comments, and it will be preserved on regeneration
51             1;
52              
53             __END__