X-Git-Url: http://wagnertech.de/git?a=blobdiff_plain;f=SL%2FDB%2FMetaSetup%2FSepaExport.pm;h=d44cb227f099b3b9f9307bce55a4a9bf0334b9a5;hb=356fec7ed87236e0b68c0ef45fe5f99c8b1f5038;hp=768597a8c4876ec0c3e73c4d4f840e128783c8a9;hpb=b8b112a39bd601b0bc717646d78de470631da22a;p=kivitendo-erp.git diff --git a/SL/DB/MetaSetup/SepaExport.pm b/SL/DB/MetaSetup/SepaExport.pm index 768597a8c..d44cb227f 100644 --- a/SL/DB/MetaSetup/SepaExport.pm +++ b/SL/DB/MetaSetup/SepaExport.pm @@ -4,15 +4,15 @@ package SL::DB::SepaExport; use strict; -use base qw(SL::DB::Object); +use parent 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; ;