kivitendo/SL/DB/MetaSetup/VariantPropertyValuePart.pm @ deae089c
53ef5f90 | Tamino Steinert | # This file has been auto-generated. Do not modify it; it will be overwritten
|
|
# by rose_auto_create_model.pl automatically.
|
|||
package SL::DB::VariantPropertyValuePart;
|
|||
use strict;
|
|||
use parent qw(SL::DB::Object);
|
|||
__PACKAGE__->meta->table('variant_property_values_parts');
|
|||
__PACKAGE__->meta->columns(
|
|||
part_id => { type => 'integer', not_null => 1 },
|
|||
variant_property_value_id => { type => 'integer', not_null => 1 },
|
|||
);
|
|||
__PACKAGE__->meta->primary_key_columns([ 'part_id', 'variant_property_value_id' ]);
|
|||
__PACKAGE__->meta->unique_keys([ 'variant_property_value_id', 'part_id' ]);
|
|||
__PACKAGE__->meta->foreign_keys(
|
|||
part => {
|
|||
class => 'SL::DB::Part',
|
|||
key_columns => { part_id => 'id' },
|
|||
},
|
|||
variant_property_value => {
|
|||
class => 'SL::DB::VariantPropertyValue',
|
|||
key_columns => { variant_property_value_id => 'id' },
|
|||
},
|
|||
);
|
|||
1;
|
|||
;
|