File Coverage

blib/lib/Bio/Chado/Schema/Result/Expression/Eimage.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::Expression::Eimage;
2             BEGIN {
3 6     6   2634 $Bio::Chado::Schema::Result::Expression::Eimage::AUTHORITY = 'cpan:RBUELS';
4             }
5             BEGIN {
6 6     6   102 $Bio::Chado::Schema::Result::Expression::Eimage::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   176 use strict;
  6         25  
  6         109  
13 6     6   26 use warnings;
  6         15  
  6         145  
14              
15 6     6   28 use base 'DBIx::Class::Core';
  6         12  
  6         729  
16              
17              
18              
19             __PACKAGE__->table("eimage");
20              
21              
22             __PACKAGE__->add_columns(
23             "eimage_id",
24             {
25             data_type => "integer",
26             is_auto_increment => 1,
27             is_nullable => 0,
28             sequence => "eimage_eimage_id_seq",
29             },
30             "eimage_data",
31             { data_type => "text", is_nullable => 1 },
32             "eimage_type",
33             { data_type => "varchar", is_nullable => 0, size => 255 },
34             "image_uri",
35             { data_type => "varchar", is_nullable => 1, size => 255 },
36             );
37             __PACKAGE__->set_primary_key("eimage_id");
38              
39              
40             __PACKAGE__->has_many(
41             "expression_images",
42             "Bio::Chado::Schema::Result::Expression::ExpressionImage",
43             { "foreign.eimage_id" => "self.eimage_id" },
44             { cascade_copy => 0, cascade_delete => 0 },
45             );
46              
47              
48             # Created by DBIx::Class::Schema::Loader v0.07001 @ 2010-08-16 23:01:56
49             # DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:2KekdzLeTd1X48rPHf7Elw
50              
51              
52             # You can replace this text with custom content, and it will be preserved on regeneration
53             1;
54              
55             __END__