File Coverage

blib/lib/Bio/Chado/Schema/Result/Composite/FpKey.pm
Criterion Covered Total %
statement 11 11 100.0
branch n/a
condition n/a
subroutine 5 5 100.0
pod n/a
total 16 16 100.0


line stmt bran cond sub pod time code
1             package Bio::Chado::Schema::Result::Composite::FpKey;
2             BEGIN {
3 6     6   2596 $Bio::Chado::Schema::Result::Composite::FpKey::AUTHORITY = 'cpan:RBUELS';
4             }
5             BEGIN {
6 6     6   102 $Bio::Chado::Schema::Result::Composite::FpKey::VERSION = '0.08001'; # TRIAL
7             }
8              
9             # Created by DBIx::Class::Schema::Loader
10             # DO NOT MODIFY THE FIRST PART OF THIS FILE
11              
12 6     6   36 use strict;
  6         14  
  6         100  
13 6     6   28 use warnings;
  6         13  
  6         147  
14              
15 6     6   26 use base 'DBIx::Class::Core';
  6         12  
  6         686  
16              
17              
18              
19             __PACKAGE__->table("fp_key");
20              
21              
22             __PACKAGE__->add_columns(
23             "feature_id",
24             { data_type => "integer", is_nullable => 1 },
25             "pkey",
26             { data_type => "varchar", is_nullable => 1, size => 1024 },
27             "value",
28             { data_type => "text", is_nullable => 1 },
29             );
30              
31              
32             # Created by DBIx::Class::Schema::Loader v0.07001 @ 2010-08-16 23:01:56
33             # DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:WHeLZBoTD6NE6yD7xxPCDA
34              
35              
36             # You can replace this text with custom content, and it will be preserved on regeneration
37             1;
38              
39             __END__