File Coverage

blib/lib/Bio/Chado/Schema/Result/Cv/CvLinkCount.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::Cv::CvLinkCount;
2             BEGIN {
3 6     6   2757 $Bio::Chado::Schema::Result::Cv::CvLinkCount::AUTHORITY = 'cpan:RBUELS';
4             }
5             BEGIN {
6 6     6   101 $Bio::Chado::Schema::Result::Cv::CvLinkCount::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   37 use strict;
  6         13  
  6         101  
13 6     6   29 use warnings;
  6         12  
  6         127  
14              
15 6     6   27 use base 'DBIx::Class::Core';
  6         14  
  6         673  
16              
17              
18              
19             __PACKAGE__->table("cv_link_count");
20              
21              
22             __PACKAGE__->add_columns(
23             "cv_name",
24             { data_type => "varchar", is_nullable => 1, size => 255 },
25             "relation_name",
26             { data_type => "varchar", is_nullable => 1, size => 1024 },
27             "relation_cv_name",
28             { data_type => "varchar", is_nullable => 1, size => 255 },
29             "num_links",
30             { data_type => "bigint", is_nullable => 1 },
31             );
32              
33              
34             # Created by DBIx::Class::Schema::Loader v0.07001 @ 2010-08-16 23:01:56
35             # DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:x7wBQatVBIvYZgrSK5N1Ng
36              
37              
38             # You can replace this text with custom content, and it will be preserved on regeneration
39             1;
40              
41             __END__