X-Git-Url: http://wagnertech.de/gitweb/gitweb.cgi/mfinanz.git/blobdiff_plain/3eb3d1b144adb92e62de08e67dc6ff3d39bf7483..f217d072d76183bc07723dcc29503b732bd2022d:/SL/DB/MetaSetup/BackgroundJobHistory.pm diff --git a/SL/DB/MetaSetup/BackgroundJobHistory.pm b/SL/DB/MetaSetup/BackgroundJobHistory.pm index 24ce17ff1..5fea4d0da 100644 --- a/SL/DB/MetaSetup/BackgroundJobHistory.pm +++ b/SL/DB/MetaSetup/BackgroundJobHistory.pm @@ -4,12 +4,13 @@ package SL::DB::BackgroundJobHistory; use strict; -use base qw(SL::DB::Object); +use parent qw(SL::DB::Object); __PACKAGE__->meta->table('background_job_histories'); __PACKAGE__->meta->columns( data => { type => 'text' }, + description => { type => 'text' }, error => { type => 'text', alias => 'error_col' }, id => { type => 'serial', not_null => 1 }, package_name => { type => 'varchar', length => 255 },