File Coverage

blib/lib/Biblio/Zotero/DB/Schema/Result/CustomField.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   11317 use utf8;
  13         34  
  13         92  
2             package Biblio::Zotero::DB::Schema::Result::CustomField;
3             $Biblio::Zotero::DB::Schema::Result::CustomField::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   701 use strict;
  13         29  
  13         379  
9 13     13   75 use warnings;
  13         25  
  13         382  
10              
11 13     13   67 use base 'DBIx::Class::Core';
  13         231  
  13         5879  
12              
13              
14             __PACKAGE__->table("customFields");
15              
16              
17             __PACKAGE__->add_columns(
18             "customfieldid",
19             { data_type => "integer", is_auto_increment => 1, is_nullable => 0 },
20             "fieldname",
21             { data_type => "text", is_nullable => 1 },
22             "label",
23             { data_type => "text", is_nullable => 1 },
24             );
25              
26              
27             __PACKAGE__->set_primary_key("customfieldid");
28              
29              
30             __PACKAGE__->has_many(
31             "custom_base_field_mappings",
32             "Biblio::Zotero::DB::Schema::Result::CustomBaseFieldMapping",
33             { "foreign.customfieldid" => "self.customfieldid" },
34             { cascade_copy => 0, cascade_delete => 0 },
35             );
36              
37              
38             __PACKAGE__->has_many(
39             "custom_item_type_fields",
40             "Biblio::Zotero::DB::Schema::Result::CustomItemTypeField",
41             { "foreign.customfieldid" => "self.customfieldid" },
42             { cascade_copy => 0, cascade_delete => 0 },
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:OowNMoDWmV2u4lqLPRPyKA
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__