File Coverage

blib/lib/Biblio/Zotero/DB/Schema/Result/SavedSearch.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   58600 use utf8;
  13         37  
  13         96  
2             package Biblio::Zotero::DB::Schema::Result::SavedSearch;
3             $Biblio::Zotero::DB::Schema::Result::SavedSearch::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   719 use strict;
  13         30  
  13         396  
9 13     13   89 use warnings;
  13         25  
  13         366  
10              
11 13     13   66 use base 'DBIx::Class::Core';
  13         25  
  13         3982  
12              
13              
14             __PACKAGE__->table("savedSearches");
15              
16              
17             __PACKAGE__->add_columns(
18             "savedsearchid",
19             { data_type => "integer", is_auto_increment => 1, is_nullable => 0 },
20             "savedsearchname",
21             { data_type => "text", is_nullable => 0 },
22             "dateadded",
23             {
24             data_type => "timestamp",
25             default_value => \"current_timestamp",
26             is_nullable => 0,
27             },
28             "datemodified",
29             {
30             data_type => "timestamp",
31             default_value => \"current_timestamp",
32             is_nullable => 0,
33             },
34             "clientdatemodified",
35             {
36             data_type => "timestamp",
37             default_value => \"current_timestamp",
38             is_nullable => 0,
39             },
40             "libraryid",
41             { data_type => "int", is_nullable => 1 },
42             "key",
43             { data_type => "text", is_nullable => 0 },
44             );
45              
46              
47             __PACKAGE__->set_primary_key("savedsearchid");
48              
49              
50             __PACKAGE__->add_unique_constraint("libraryid_key_unique", ["libraryid", "key"]);
51              
52              
53             __PACKAGE__->has_many(
54             "saved_search_conditions",
55             "Biblio::Zotero::DB::Schema::Result::SavedSearchCondition",
56             { "foreign.savedsearchid" => "self.savedsearchid" },
57             { cascade_copy => 0, cascade_delete => 0 },
58             );
59              
60              
61             # Created by DBIx::Class::Schema::Loader v0.07035 @ 2013-07-02 23:02:38
62             # DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:tBpgaZNfOkTpszoJb8m94Q
63              
64              
65             # You can replace this text with custom code or comments, and it will be preserved on regeneration
66             1;
67              
68             __END__