X-Git-Url: http://wagnertech.de/git?a=blobdiff_plain;f=SL%2FDB%2FMetaSetup%2FWarehouse.pm;h=d06c129920f5213d2d87d5d1eae06a3dae456571;hb=53fcb212544cf90957c5e6a3b3a1a36af395b273;hp=c75eb9f7920ae10d2ada5834f6b832226e8dd24e;hpb=b8b112a39bd601b0bc717646d78de470631da22a;p=kivitendo-erp.git diff --git a/SL/DB/MetaSetup/Warehouse.pm b/SL/DB/MetaSetup/Warehouse.pm index c75eb9f79..d06c12992 100644 --- a/SL/DB/MetaSetup/Warehouse.pm +++ b/SL/DB/MetaSetup/Warehouse.pm @@ -9,19 +9,17 @@ use base qw(SL::DB::Object); __PACKAGE__->meta->table('warehouse'); __PACKAGE__->meta->columns( - id => { type => 'integer', not_null => 1, sequence => 'id' }, description => { type => 'text' }, + id => { type => 'integer', not_null => 1, sequence => 'id' }, + invalid => { type => 'boolean' }, itime => { type => 'timestamp', default => 'now()' }, mtime => { type => 'timestamp' }, sortkey => { type => 'integer' }, - invalid => { type => 'boolean' }, ); __PACKAGE__->meta->primary_key_columns([ 'id' ]); __PACKAGE__->meta->allow_inline_column_values(1); -# __PACKAGE__->meta->initialize; - 1; ;