File Coverage

blib/lib/Biblio/Zotero/DB/Schema/Result/SyncedSetting.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   12454 use utf8;
  13         34  
  13         92  
2             package Biblio::Zotero::DB::Schema::Result::SyncedSetting;
3             $Biblio::Zotero::DB::Schema::Result::SyncedSetting::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   731 use strict;
  13         27  
  13         420  
9 13     13   76 use warnings;
  13         25  
  13         410  
10              
11 13     13   90 use base 'DBIx::Class::Core';
  13         41  
  13         2573  
12              
13              
14             __PACKAGE__->table("syncedSettings");
15              
16              
17             __PACKAGE__->add_columns(
18             "setting",
19             { data_type => "text", is_nullable => 0 },
20             "libraryid",
21             { data_type => "int", is_nullable => 0 },
22             "value",
23             { data_type => "", is_nullable => 0 },
24             "version",
25             { data_type => "int", default_value => 0, is_nullable => 0 },
26             "synced",
27             { data_type => "int", default_value => 0, is_nullable => 0 },
28             );
29              
30              
31             __PACKAGE__->set_primary_key("setting", "libraryid");
32              
33              
34             # Created by DBIx::Class::Schema::Loader v0.07035 @ 2013-07-02 23:02:38
35             # DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:EMwSimKYNU3zBV08SE7n/w
36              
37              
38             # You can replace this text with custom code or comments, and it will be preserved on regeneration
39             1;
40              
41             __END__