X-Git-Url: http://wagnertech.de/git?a=blobdiff_plain;f=SL%2FDB%2FMetaSetup%2FAssembly.pm;h=87ffae6e373d894445a4532935914a4370630474;hb=b944282768f7d90bf6bdf8db576fe539bb88481d;hp=03879518313cb00245397b8dc9945994b9566f3a;hpb=f81104ce1ba2455cd5fb4f91c96a7dd3f38427e5;p=kivitendo-erp.git diff --git a/SL/DB/MetaSetup/Assembly.pm b/SL/DB/MetaSetup/Assembly.pm index 038795183..87ffae6e3 100644 --- a/SL/DB/MetaSetup/Assembly.pm +++ b/SL/DB/MetaSetup/Assembly.pm @@ -4,22 +4,34 @@ package SL::DB::Assembly; use strict; -use base qw(SL::DB::Object); - -__PACKAGE__->meta->setup( - table => 'assembly', - - columns => [ - id => { type => 'integer' }, - parts_id => { type => 'integer' }, - qty => { type => 'float', precision => 4 }, - bom => { type => 'boolean' }, - itime => { type => 'timestamp', default => 'now()' }, - mtime => { type => 'timestamp' }, - assembly_id => { type => 'serial', not_null => 1 }, - ], - - primary_key_columns => [ 'assembly_id' ], +use parent qw(SL::DB::Object); + +__PACKAGE__->meta->table('assembly'); + +__PACKAGE__->meta->columns( + assembly_id => { type => 'serial', not_null => 1 }, + bom => { type => 'boolean' }, + id => { type => 'integer', not_null => 1 }, + itime => { type => 'timestamp', default => 'now()' }, + mtime => { type => 'timestamp' }, + parts_id => { type => 'integer', not_null => 1 }, + qty => { type => 'float', scale => 4 }, +); + +__PACKAGE__->meta->primary_key_columns([ 'assembly_id' ]); + +__PACKAGE__->meta->allow_inline_column_values(1); + +__PACKAGE__->meta->foreign_keys( + assembly_part => { + class => 'SL::DB::Part', + key_columns => { id => 'id' }, + }, + + part => { + class => 'SL::DB::Part', + key_columns => { parts_id => 'id' }, + }, ); 1;