X-Git-Url: http://wagnertech.de/git?a=blobdiff_plain;f=SL%2FDB%2FMetaSetup%2FSepaExportItem.pm;h=b24588af7552cbddcf49325b71594f6f570fe61c;hb=660c7e5312f7fae7766b731f7001e5e8197c6887;hp=6f5051b2bc03c343d638a261fe72a8d519bdbf22;hpb=15f58ff3dfd79651a95535b53f864ea0e8cb6620;p=kivitendo-erp.git diff --git a/SL/DB/MetaSetup/SepaExportItem.pm b/SL/DB/MetaSetup/SepaExportItem.pm index 6f5051b2b..b24588af7 100644 --- a/SL/DB/MetaSetup/SepaExportItem.pm +++ b/SL/DB/MetaSetup/SepaExportItem.pm @@ -4,7 +4,7 @@ package SL::DB::SepaExportItem; use strict; -use base qw(SL::DB::Object); +use parent qw(SL::DB::Object); __PACKAGE__->meta->table('sepa_export_items'); @@ -21,7 +21,7 @@ __PACKAGE__->meta->columns( our_depositor => { type => 'text' }, our_iban => { type => 'varchar', length => 100 }, payment_type => { type => 'text', default => 'without_skonto' }, - reference => { type => 'varchar', length => 35 }, + reference => { type => 'varchar', length => 140 }, requested_execution_date => { type => 'date' }, sepa_export_id => { type => 'integer', not_null => 1 }, skonto_amount => { type => 'numeric', precision => 25, scale => 5 },