X-Git-Url: http://wagnertech.de/gitweb/gitweb.cgi/mfinanz.git/blobdiff_plain/4cbe32ff62fcce20fff876292ace807c5a61535b..a89af9c2a38f19bc2834a2e09a286ff36c9ef3d7:/SL/DB/MetaSetup/Assembly.pm 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;