File Coverage

blib/lib/Bio/Chado/Schema/Result/Mage/Studyfactorvalue.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::Studyfactorvalue;
2             BEGIN {
3 6     6   2551 $Bio::Chado::Schema::Result::Mage::Studyfactorvalue::AUTHORITY = 'cpan:RBUELS';
4             }
5             BEGIN {
6 6     6   99 $Bio::Chado::Schema::Result::Mage::Studyfactorvalue::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   38 use strict;
  6         12  
  6         99  
13 6     6   24 use warnings;
  6         14  
  6         130  
14              
15 6     6   26 use base 'DBIx::Class::Core';
  6         17  
  6         1003  
16              
17              
18              
19             __PACKAGE__->table("studyfactorvalue");
20              
21              
22             __PACKAGE__->add_columns(
23             "studyfactorvalue_id",
24             {
25             data_type => "integer",
26             is_auto_increment => 1,
27             is_nullable => 0,
28             sequence => "studyfactorvalue_studyfactorvalue_id_seq",
29             },
30             "studyfactor_id",
31             { data_type => "integer", is_foreign_key => 1, is_nullable => 0 },
32             "assay_id",
33             { data_type => "integer", is_foreign_key => 1, is_nullable => 0 },
34             "factorvalue",
35             { data_type => "text", is_nullable => 1 },
36             "name",
37             { data_type => "text", is_nullable => 1 },
38             "rank",
39             { data_type => "integer", default_value => 0, is_nullable => 0 },
40             );
41             __PACKAGE__->set_primary_key("studyfactorvalue_id");
42              
43              
44             __PACKAGE__->belongs_to(
45             "assay",
46             "Bio::Chado::Schema::Result::Mage::Assay",
47             { assay_id => "assay_id" },
48             {
49             cascade_copy => 0,
50             cascade_delete => 0,
51             is_deferrable => 1,
52             on_delete => "CASCADE",
53             on_update => "CASCADE",
54             },
55             );
56              
57              
58             __PACKAGE__->belongs_to(
59             "studyfactor",
60             "Bio::Chado::Schema::Result::Mage::Studyfactor",
61             { studyfactor_id => "studyfactor_id" },
62             {
63             cascade_copy => 0,
64             cascade_delete => 0,
65             is_deferrable => 1,
66             on_delete => "CASCADE",
67             on_update => "CASCADE",
68             },
69             );
70              
71              
72             # Created by DBIx::Class::Schema::Loader v0.06001 @ 2010-04-16 14:33:36
73             # DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:k9J30JZ9SKuIOY7eyNO2Kw
74              
75              
76             # You can replace this text with custom content, and it will be preserved on regeneration
77             1;
78              
79             __END__