X-Git-Url: http://wagnertech.de/git?a=blobdiff_plain;f=SL%2FDB%2FMetaSetup%2FSepaExport.pm;h=bade321c4ec1f266a696172790b0cd730ac126ee;hb=013804fdf4b69b04889d8bf8af182eda9e9d95a5;hp=768597a8c4876ec0c3e73c4d4f840e128783c8a9;hpb=b8b112a39bd601b0bc717646d78de470631da22a;p=kivitendo-erp.git diff --git a/SL/DB/MetaSetup/SepaExport.pm b/SL/DB/MetaSetup/SepaExport.pm index 768597a8c..bade321c4 100644 --- a/SL/DB/MetaSetup/SepaExport.pm +++ b/SL/DB/MetaSetup/SepaExport.pm @@ -9,10 +9,10 @@ use base qw(SL::DB::Object); __PACKAGE__->meta->table('sepa_export'); __PACKAGE__->meta->columns( - id => { type => 'serial', not_null => 1 }, + closed => { type => 'boolean', default => 'false' }, employee_id => { type => 'integer', not_null => 1 }, executed => { type => 'boolean', default => 'false' }, - closed => { type => 'boolean', default => 'false' }, + id => { type => 'serial', not_null => 1 }, itime => { type => 'timestamp', default => 'now()' }, vc => { type => 'varchar', length => 10 }, ); @@ -28,7 +28,5 @@ __PACKAGE__->meta->foreign_keys( }, ); -# __PACKAGE__->meta->initialize; - 1; ;