X-Git-Url: http://wagnertech.de/git?a=blobdiff_plain;f=SL%2FDB%2FMetaSetup%2FDatev.pm;h=1f1c148e29fb418f3154f9eb572cf49b2b374402;hb=a9d9ca02abd3a0ff1e43f23888142266174bec55;hp=c0d7feee92a6eda95a2b80709dab97339af28208;hpb=b8b112a39bd601b0bc717646d78de470631da22a;p=kivitendo-erp.git diff --git a/SL/DB/MetaSetup/Datev.pm b/SL/DB/MetaSetup/Datev.pm index c0d7feee9..1f1c148e2 100644 --- a/SL/DB/MetaSetup/Datev.pm +++ b/SL/DB/MetaSetup/Datev.pm @@ -4,27 +4,25 @@ package SL::DB::Datev; use strict; -use base qw(SL::DB::Object); +use parent 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; ;