File Coverage

blib/lib/Interchange6/Schema/Result/NavigationAttributeValue.pm
Criterion Covered Total %
statement 6 6 100.0
branch n/a
condition n/a
subroutine 2 2 100.0
pod n/a
total 8 8 100.0


line stmt bran cond sub pod time code
1 2     2   1263 use utf8;
  2         6  
  2         18  
2              
3             package Interchange6::Schema::Result::NavigationAttributeValue;
4              
5             =head1 NAME
6              
7             Interchange6::Schema::Result::NavigationAttributeValue
8              
9             =cut
10              
11 2     2   101 use Interchange6::Schema::Candy;
  2         6  
  2         17  
12              
13             =head1 ACCESSORS
14              
15             =head2 navigation_attribute_values_id
16              
17             Primary key.
18              
19             =cut
20              
21             primary_column navigation_attribute_values_id => {
22             data_type => "integer",
23             is_auto_increment => 1,
24             };
25              
26             =head2 navigation_attributes_id
27              
28             FK on L<Interchange6::Schema::Result::NavigationAttribute/navigation_attributes_id>.
29              
30             =cut
31              
32             column navigation_attributes_id =>
33             { data_type => "integer" };
34              
35             =head2 attribute_values_id
36              
37             FK on L<Interchange6::Schema::Result::AttributeValue/attribute_values_id>.
38              
39             =cut
40              
41             column attribute_values_id =>
42             { data_type => "integer" };
43              
44             =head1 RELATIONS
45              
46             =head2 navigation_attribute
47              
48             Type: belongs_to
49              
50             Related object: L<Interchange6::Schema::Result::NavigationAttribute>
51              
52             =cut
53              
54             belongs_to
55             navigation_attribute => "Interchange6::Schema::Result::NavigationAttribute",
56             "navigation_attributes_id",
57             { is_deferrable => 1, on_delete => "CASCADE", on_update => "CASCADE" };
58              
59             =head2 attribute_value
60              
61             Type: belongs_to
62              
63             Related object: L<Interchange6::Schema::Result::AttributeValue>
64              
65             =cut
66              
67             belongs_to
68             attribute_value => "Interchange6::Schema::Result::AttributeValue",
69             "attribute_values_id",
70             { is_deferrable => 1, on_delete => "CASCADE", on_update => "CASCADE" };
71              
72             1;