File Coverage

blib/lib/Biblio/Zotero/DB/Schema/Result/ItemType.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   11348 use utf8;
  13         30  
  13         93  
2             package Biblio::Zotero::DB::Schema::Result::ItemType;
3             $Biblio::Zotero::DB::Schema::Result::ItemType::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   698 use strict;
  13         28  
  13         447  
9 13     13   68 use warnings;
  13         26  
  13         335  
10              
11 13     13   63 use base 'DBIx::Class::Core';
  13         30  
  13         3243  
12              
13              
14             __PACKAGE__->table("itemTypes");
15              
16              
17             __PACKAGE__->add_columns(
18             "itemtypeid",
19             { data_type => "integer", is_auto_increment => 1, is_nullable => 0 },
20             "typename",
21             { data_type => "text", is_nullable => 1 },
22             "templateitemtypeid",
23             { data_type => "int", is_nullable => 1 },
24             "display",
25             { data_type => "int", default_value => 1, is_nullable => 1 },
26             );
27              
28              
29             __PACKAGE__->set_primary_key("itemtypeid");
30              
31              
32             __PACKAGE__->has_many(
33             "base_field_mappings",
34             "Biblio::Zotero::DB::Schema::Result::BaseFieldMapping",
35             { "foreign.itemtypeid" => "self.itemtypeid" },
36             { cascade_copy => 0, cascade_delete => 0 },
37             );
38              
39              
40             __PACKAGE__->has_many(
41             "item_type_creator_types",
42             "Biblio::Zotero::DB::Schema::Result::ItemTypeCreatorType",
43             { "foreign.itemtypeid" => "self.itemtypeid" },
44             { cascade_copy => 0, cascade_delete => 0 },
45             );
46              
47              
48             __PACKAGE__->has_many(
49             "item_type_fields",
50             "Biblio::Zotero::DB::Schema::Result::ItemTypeField",
51             { "foreign.itemtypeid" => "self.itemtypeid" },
52             { cascade_copy => 0, cascade_delete => 0 },
53             );
54              
55              
56             # Created by DBIx::Class::Schema::Loader v0.07035 @ 2013-07-02 23:02:38
57             # DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:9neWrGI+M7r0VExseuNPPw
58              
59              
60             # You can replace this text with custom code or comments, and it will be preserved on regeneration
61             1;
62              
63             __END__