File Coverage

blib/lib/Bio/Chado/Schema/Result/Mage/Mageml.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::Mage::Mageml;
2             BEGIN {
3 6     6   2681 $Bio::Chado::Schema::Result::Mage::Mageml::AUTHORITY = 'cpan:RBUELS';
4             }
5             BEGIN {
6 6     6   100 $Bio::Chado::Schema::Result::Mage::Mageml::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   26 use warnings;
  6         12  
  6         127  
14              
15 6     6   28 use base 'DBIx::Class::Core';
  6         14  
  6         740  
16              
17              
18              
19             __PACKAGE__->table("mageml");
20              
21              
22             __PACKAGE__->add_columns(
23             "mageml_id",
24             {
25             data_type => "integer",
26             is_auto_increment => 1,
27             is_nullable => 0,
28             sequence => "mageml_mageml_id_seq",
29             },
30             "mage_package",
31             { data_type => "text", is_nullable => 0 },
32             "mage_ml",
33             { data_type => "text", is_nullable => 0 },
34             );
35             __PACKAGE__->set_primary_key("mageml_id");
36              
37              
38             __PACKAGE__->has_many(
39             "magedocumentations",
40             "Bio::Chado::Schema::Result::Mage::Magedocumentation",
41             { "foreign.mageml_id" => "self.mageml_id" },
42             { cascade_copy => 0, cascade_delete => 0 },
43             );
44              
45              
46             # Created by DBIx::Class::Schema::Loader v0.06001 @ 2010-04-16 14:33:36
47             # DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:Ylwo78VkGt3UpKcfpKXteQ
48              
49              
50             # You can replace this text with custom content, and it will be preserved on regeneration
51             1;
52              
53             __END__