X-Git-Url: http://wagnertech.de/git?a=blobdiff_plain;f=SL%2FDB%2FMetaSetup%2FAssembly.pm;h=4e8fe0e5e1a803ea7fbe2fec513dfb39bf4265e8;hb=97a6f6d623a9810e1d324f44a5f8bcd12294f5d3;hp=03879518313cb00245397b8dc9945994b9566f3a;hpb=4cbe32ff62fcce20fff876292ace807c5a61535b;p=kivitendo-erp.git diff --git a/SL/DB/MetaSetup/Assembly.pm b/SL/DB/MetaSetup/Assembly.pm index 038795183..4e8fe0e5e 100644 --- a/SL/DB/MetaSetup/Assembly.pm +++ b/SL/DB/MetaSetup/Assembly.pm @@ -4,22 +4,35 @@ 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 }, + position => { type => 'integer' }, + qty => { type => 'float', precision => 4, 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;