X-Git-Url: http://wagnertech.de/git?a=blobdiff_plain;f=SL%2FDB%2FMetaSetup%2FDatev.pm;h=0b187c5088043c9a555476fc2c2d9ea45a14678f;hb=377b705324a4c43ef21b838d4ea9d474132cf16f;hp=c0d7feee92a6eda95a2b80709dab97339af28208;hpb=b8b112a39bd601b0bc717646d78de470631da22a;p=kivitendo-erp.git diff --git a/SL/DB/MetaSetup/Datev.pm b/SL/DB/MetaSetup/Datev.pm index c0d7feee9..0b187c508 100644 --- a/SL/DB/MetaSetup/Datev.pm +++ b/SL/DB/MetaSetup/Datev.pm @@ -9,22 +9,20 @@ use base qw(SL::DB::Object); __PACKAGE__->meta->table('datev'); __PACKAGE__->meta->columns( - beraternr => { type => 'varchar', length => 7 }, + abrechnungsnr => { type => 'varchar', length => 6 }, beratername => { type => 'varchar', length => 9 }, - mandantennr => { type => 'varchar', length => 5 }, - dfvkz => { type => 'varchar', length => 2 }, + beraternr => { type => 'varchar', length => 7 }, datentraegernr => { type => 'varchar', length => 3 }, - abrechnungsnr => { type => 'varchar', length => 6 }, + dfvkz => { type => 'varchar', length => 2 }, + id => { type => 'serial', not_null => 1 }, itime => { type => 'timestamp', default => 'now()' }, + mandantennr => { type => 'varchar', length => 5 }, mtime => { type => 'timestamp' }, - id => { type => 'serial', not_null => 1 }, ); __PACKAGE__->meta->primary_key_columns([ 'id' ]); __PACKAGE__->meta->allow_inline_column_values(1); -# __PACKAGE__->meta->initialize; - 1; ;