X-Git-Url: http://wagnertech.de/gitweb/gitweb.cgi/kivitendo-erp.git/blobdiff_plain/f9c7abfae65b79945beb7e9260942bc94876248a..ada964d139eb652502bbdec96adf8634e49d8872:/SL/DB/MetaSetup/BackgroundJobHistory.pm diff --git a/SL/DB/MetaSetup/BackgroundJobHistory.pm b/SL/DB/MetaSetup/BackgroundJobHistory.pm index bd78a7d50..24ce17ff1 100644 --- a/SL/DB/MetaSetup/BackgroundJobHistory.pm +++ b/SL/DB/MetaSetup/BackgroundJobHistory.pm @@ -6,21 +6,19 @@ use strict; use base qw(SL::DB::Object); -__PACKAGE__->meta->setup( - table => 'background_job_histories', +__PACKAGE__->meta->table('background_job_histories'); - columns => [ - id => { type => 'serial', not_null => 1 }, - package_name => { type => 'varchar', length => 255 }, - run_at => { type => 'timestamp' }, - status => { type => 'varchar', length => 255 }, - result => { type => 'text' }, - error => { type => 'text', alias => 'error_col' }, - data => { type => 'text' }, - ], - - primary_key_columns => [ 'id' ], +__PACKAGE__->meta->columns( + data => { type => 'text' }, + error => { type => 'text', alias => 'error_col' }, + id => { type => 'serial', not_null => 1 }, + package_name => { type => 'varchar', length => 255 }, + result => { type => 'text' }, + run_at => { type => 'timestamp' }, + status => { type => 'varchar', length => 255 }, ); +__PACKAGE__->meta->primary_key_columns([ 'id' ]); + 1; ;