File Coverage

blib/lib/Biblio/Zotero/DB/Schema/Result/DeletedItem.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   11077 use utf8;
  13         30  
  13         96  
2             package Biblio::Zotero::DB::Schema::Result::DeletedItem;
3             $Biblio::Zotero::DB::Schema::Result::DeletedItem::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   677 use strict;
  13         25  
  13         419  
9 13     13   66 use warnings;
  13         35  
  13         374  
10              
11 13     13   102 use base 'DBIx::Class::Core';
  13         27  
  13         2448  
12              
13              
14             __PACKAGE__->table("deletedItems");
15              
16              
17             __PACKAGE__->add_columns(
18             "itemid",
19             { data_type => "integer", is_auto_increment => 1, is_nullable => 0 },
20             "datedeleted",
21             {
22             data_type => "",
23             default_value => \"current_timestamp",
24             is_nullable => 0,
25             },
26             );
27              
28              
29             __PACKAGE__->set_primary_key("itemid");
30              
31              
32             # Created by DBIx::Class::Schema::Loader v0.07035 @ 2013-07-02 23:02:38
33             # DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:/tamvXs5KkDISkgxH9iZQw
34              
35              
36             # You can replace this text with custom code or comments, and it will be preserved on regeneration
37             1;
38              
39             __END__