use utf8;
=head1 NAME
Interchange6::Schema::Result::ProductAttributeValue
=cut
=head1 ACCESSORS
=head2 product_attribute_values_id
Primary key.
=cut
primary_column product_attribute_values_id =>
{ data_type => "integer", is_auto_increment => 1 };
=head2 product_attributes_id
FK on L<Interchange6::Schema::Result::ProductAttribute/product_attributes_id>.
=cut
column product_attributes_id =>
{ data_type => "integer" };
=head2 attribute_values_id
FK on L<Interchange6::Schema::Result::AttributeValue/attribute_values_id>.
=cut
column attribute_values_id =>
{ data_type => "integer" };
=head1 RELATIONS
=head2 product_attribute
Type: belongs_to
Related object: L<Interchange6::Schema::Result::ProductAttribute>
=cut
belongs_to
product_attribute => "Interchange6::Schema::Result::ProductAttribute",
"product_attributes_id",
{ is_deferrable => 1, on_delete => "CASCADE", on_update => "CASCADE" };
=head2 attribute_value
Type: belongs_to
Related object: L<Interchange6::Schema::Result::AttributeValue>
=cut
belongs_to
attribute_value => "Interchange6::Schema::Result::AttributeValue",
"attribute_values_id",
{ is_deferrable => 1, on_delete => "CASCADE", on_update => "CASCADE" };
1;