File Coverage

blib/lib/Biblio/Zotero/DB/Schema/Result/SyncObjectType.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   11428 use utf8;
  13         121  
  13         95  
2             package Biblio::Zotero::DB::Schema::Result::SyncObjectType;
3             $Biblio::Zotero::DB::Schema::Result::SyncObjectType::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   692 use strict;
  13         30  
  13         375  
9 13     13   68 use warnings;
  13         24  
  13         416  
10              
11 13     13   70 use base 'DBIx::Class::Core';
  13         23  
  13         2642  
12              
13              
14             __PACKAGE__->table("syncObjectTypes");
15              
16              
17             __PACKAGE__->add_columns(
18             "syncobjecttypeid",
19             { data_type => "integer", is_auto_increment => 1, is_nullable => 0 },
20             "name",
21             { data_type => "text", is_nullable => 1 },
22             );
23              
24              
25             __PACKAGE__->set_primary_key("syncobjecttypeid");
26              
27              
28             __PACKAGE__->has_many(
29             "sync_delete_logs",
30             "Biblio::Zotero::DB::Schema::Result::SyncDeleteLog",
31             { "foreign.syncobjecttypeid" => "self.syncobjecttypeid" },
32             { cascade_copy => 0, cascade_delete => 0 },
33             );
34              
35              
36             # Created by DBIx::Class::Schema::Loader v0.07035 @ 2013-07-02 23:02:38
37             # DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:XdxxGgZFy8Y3LjNPjrXAgw
38              
39              
40             # You can replace this text with custom code or comments, and it will be preserved on regeneration
41             1;
42              
43             __END__