X-Git-Url: http://wagnertech.de/git?a=blobdiff_plain;f=SL%2FDB%2FMetaSetup%2FBin.pm;h=223276ed622fb9fa604bb008b1dfdb55e9779d12;hb=84ad2fe899cefcac5ac2a86af373bad5aa7d4058;hp=df051036158f000b3c9420b36a3ab33acd7b0d96;hpb=b8b112a39bd601b0bc717646d78de470631da22a;p=kivitendo-erp.git diff --git a/SL/DB/MetaSetup/Bin.pm b/SL/DB/MetaSetup/Bin.pm index df0510361..223276ed6 100644 --- a/SL/DB/MetaSetup/Bin.pm +++ b/SL/DB/MetaSetup/Bin.pm @@ -9,11 +9,11 @@ use base qw(SL::DB::Object); __PACKAGE__->meta->table('bin'); __PACKAGE__->meta->columns( - id => { type => 'integer', not_null => 1, sequence => 'id' }, - warehouse_id => { type => 'integer', not_null => 1 }, description => { type => 'text' }, + id => { type => 'integer', not_null => 1, sequence => 'id' }, itime => { type => 'timestamp', default => 'now()' }, mtime => { type => 'timestamp' }, + warehouse_id => { type => 'integer', not_null => 1 }, ); __PACKAGE__->meta->primary_key_columns([ 'id' ]); @@ -27,7 +27,5 @@ __PACKAGE__->meta->foreign_keys( }, ); -# __PACKAGE__->meta->initialize; - 1; ;