File Coverage

blib/lib/Bio/Chado/Schema/Result/Composite/FnrType.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::FnrType;
2             BEGIN {
3 6     6   2554 $Bio::Chado::Schema::Result::Composite::FnrType::AUTHORITY = 'cpan:RBUELS';
4             }
5             BEGIN {
6 6     6   98 $Bio::Chado::Schema::Result::Composite::FnrType::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   34 use strict;
  6         12  
  6         97  
13 6     6   27 use warnings;
  6         13  
  6         124  
14              
15 6     6   25 use base 'DBIx::Class::Core';
  6         14  
  6         791  
16              
17              
18              
19             __PACKAGE__->table("fnr_type");
20              
21              
22             __PACKAGE__->add_columns(
23             "feature_id",
24             { data_type => "integer", is_nullable => 1 },
25             "name",
26             { data_type => "varchar", is_nullable => 1, size => 255 },
27             "dbxref_id",
28             { data_type => "integer", is_nullable => 1 },
29             "type",
30             { data_type => "varchar", is_nullable => 1, size => 1024 },
31             "residues",
32             { data_type => "text", is_nullable => 1 },
33             "seqlen",
34             { data_type => "integer", is_nullable => 1 },
35             "md5checksum",
36             { data_type => "char", is_nullable => 1, size => 32 },
37             "type_id",
38             { data_type => "integer", is_nullable => 1 },
39             "timeaccessioned",
40             { data_type => "timestamp", is_nullable => 1 },
41             "timelastmodified",
42             { data_type => "timestamp", is_nullable => 1 },
43             );
44              
45              
46             # Created by DBIx::Class::Schema::Loader v0.07001 @ 2010-08-16 23:01:56
47             # DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:mlTLdTbq3UsRRu67l4rxJA
48              
49              
50             # You can replace this text with custom content, and it will be preserved on regeneration
51             1;
52              
53             __END__