X-Git-Url: http://wagnertech.de/git?a=blobdiff_plain;f=SL%2FDB%2FMetaSetup%2FTransferType.pm;h=7facb04855d7283168b03d490f330a13749c5473;hb=013804fdf4b69b04889d8bf8af182eda9e9d95a5;hp=74a3840700388ddf286c98faafd4fdd21a4512f5;hpb=b8b112a39bd601b0bc717646d78de470631da22a;p=kivitendo-erp.git diff --git a/SL/DB/MetaSetup/TransferType.pm b/SL/DB/MetaSetup/TransferType.pm index 74a384070..7facb0485 100644 --- a/SL/DB/MetaSetup/TransferType.pm +++ b/SL/DB/MetaSetup/TransferType.pm @@ -9,27 +9,17 @@ use base qw(SL::DB::Object); __PACKAGE__->meta->table('transfer_type'); __PACKAGE__->meta->columns( - id => { type => 'integer', not_null => 1, sequence => 'id' }, - direction => { type => 'varchar', length => 10, not_null => 1 }, description => { type => 'text' }, - sortkey => { type => 'integer' }, + direction => { type => 'varchar', length => 10, not_null => 1 }, + id => { type => 'integer', not_null => 1, sequence => 'id' }, itime => { type => 'timestamp', default => 'now()' }, mtime => { type => 'timestamp' }, + sortkey => { type => 'integer' }, ); __PACKAGE__->meta->primary_key_columns([ 'id' ]); __PACKAGE__->meta->allow_inline_column_values(1); -__PACKAGE__->meta->relationships( - inventory => { - class => 'SL::DB::Inventory', - column_map => { id => 'trans_type_id' }, - type => 'one to many', - }, -); - -# __PACKAGE__->meta->initialize; - 1; ;