File Coverage

blib/lib/Bio/Chado/Schema/Result/Mage/Studydesign.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::Studydesign;
2             BEGIN {
3 6     6   2486 $Bio::Chado::Schema::Result::Mage::Studydesign::AUTHORITY = 'cpan:RBUELS';
4             }
5             BEGIN {
6 6     6   121 $Bio::Chado::Schema::Result::Mage::Studydesign::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         13  
  6         103  
13 6     6   27 use warnings;
  6         13  
  6         132  
14              
15 6     6   27 use base 'DBIx::Class::Core';
  6         13  
  6         859  
16              
17              
18              
19             __PACKAGE__->table("studydesign");
20              
21              
22             __PACKAGE__->add_columns(
23             "studydesign_id",
24             {
25             data_type => "integer",
26             is_auto_increment => 1,
27             is_nullable => 0,
28             sequence => "studydesign_studydesign_id_seq",
29             },
30             "study_id",
31             { data_type => "integer", is_foreign_key => 1, is_nullable => 0 },
32             "description",
33             { data_type => "text", is_nullable => 1 },
34             );
35             __PACKAGE__->set_primary_key("studydesign_id");
36              
37              
38             __PACKAGE__->belongs_to(
39             "study",
40             "Bio::Chado::Schema::Result::Mage::Study",
41             { study_id => "study_id" },
42             {
43             cascade_copy => 0,
44             cascade_delete => 0,
45             is_deferrable => 1,
46             on_delete => "CASCADE",
47             on_update => "CASCADE",
48             },
49             );
50              
51              
52             __PACKAGE__->has_many(
53             "studydesignprops",
54             "Bio::Chado::Schema::Result::Mage::Studydesignprop",
55             { "foreign.studydesign_id" => "self.studydesign_id" },
56             { cascade_copy => 0, cascade_delete => 0 },
57             );
58              
59              
60             __PACKAGE__->has_many(
61             "studyfactors",
62             "Bio::Chado::Schema::Result::Mage::Studyfactor",
63             { "foreign.studydesign_id" => "self.studydesign_id" },
64             { cascade_copy => 0, cascade_delete => 0 },
65             );
66              
67              
68             # Created by DBIx::Class::Schema::Loader v0.06001 @ 2010-04-16 14:33:36
69             # DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:rRzfi8h7x2cAkVdfdhn8jQ
70              
71              
72             # You can replace this text with custom content, and it will be preserved on regeneration
73             1;
74              
75             __END__