File Coverage

blib/lib/Bio/Chado/Schema/Result/Cv/Cvtermpath.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::Cvtermpath;
2             BEGIN {
3 6     6   2585 $Bio::Chado::Schema::Result::Cv::Cvtermpath::AUTHORITY = 'cpan:RBUELS';
4             }
5             BEGIN {
6 6     6   102 $Bio::Chado::Schema::Result::Cv::Cvtermpath::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   35 use strict;
  6         13  
  6         116  
13 6     6   29 use warnings;
  6         13  
  6         128  
14              
15 6     6   28 use base 'DBIx::Class::Core';
  6         13  
  6         1145  
16              
17              
18              
19             __PACKAGE__->table("cvtermpath");
20              
21              
22             __PACKAGE__->add_columns(
23             "cvtermpath_id",
24             {
25             data_type => "integer",
26             is_auto_increment => 1,
27             is_nullable => 0,
28             sequence => "cvtermpath_cvtermpath_id_seq",
29             },
30             "type_id",
31             { data_type => "integer", is_foreign_key => 1, is_nullable => 1 },
32             "subject_id",
33             { data_type => "integer", is_foreign_key => 1, is_nullable => 0 },
34             "object_id",
35             { data_type => "integer", is_foreign_key => 1, is_nullable => 0 },
36             "cv_id",
37             { data_type => "integer", is_foreign_key => 1, is_nullable => 0 },
38             "pathdistance",
39             { data_type => "integer", is_nullable => 1 },
40             );
41             __PACKAGE__->set_primary_key("cvtermpath_id");
42             __PACKAGE__->add_unique_constraint(
43             "cvtermpath_c1",
44             ["subject_id", "object_id", "type_id", "pathdistance"],
45             );
46              
47              
48             __PACKAGE__->belongs_to(
49             "type",
50             "Bio::Chado::Schema::Result::Cv::Cvterm",
51             { cvterm_id => "type_id" },
52             {
53             cascade_copy => 0,
54             cascade_delete => 0,
55             is_deferrable => 1,
56             join_type => "LEFT",
57             on_delete => "CASCADE",
58             on_update => "CASCADE",
59             },
60             );
61              
62              
63             __PACKAGE__->belongs_to(
64             "object",
65             "Bio::Chado::Schema::Result::Cv::Cvterm",
66             { cvterm_id => "object_id" },
67             {
68             cascade_copy => 0,
69             cascade_delete => 0,
70             is_deferrable => 1,
71             on_delete => "CASCADE",
72             on_update => "CASCADE",
73             },
74             );
75              
76              
77             __PACKAGE__->belongs_to(
78             "subject",
79             "Bio::Chado::Schema::Result::Cv::Cvterm",
80             { cvterm_id => "subject_id" },
81             {
82             cascade_copy => 0,
83             cascade_delete => 0,
84             is_deferrable => 1,
85             on_delete => "CASCADE",
86             on_update => "CASCADE",
87             },
88             );
89              
90              
91             __PACKAGE__->belongs_to(
92             "cv",
93             "Bio::Chado::Schema::Result::Cv::Cv",
94             { cv_id => "cv_id" },
95             {
96             cascade_copy => 0,
97             cascade_delete => 0,
98             is_deferrable => 1,
99             on_delete => "CASCADE",
100             on_update => "CASCADE",
101             },
102             );
103              
104              
105             # Created by DBIx::Class::Schema::Loader v0.06001 @ 2010-04-16 14:33:36
106             # DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:1B23FYH1bWW69+918dFlZw
107              
108              
109             # You can replace this text with custom content, and it will be preserved on regeneration
110             1;
111              
112             __END__