]> wagnertech.de Git - mfinanz.git/blobdiff - SL/DB/MetaSetup/BackgroundJob.pm
Merge branch 'master' of http://wagnertech.de/git/mfinanz
[mfinanz.git] / SL / DB / MetaSetup / BackgroundJob.pm
index 6b19131094665263dc6d06b415ce9fdf0943d2c0..81b175e257698eb54460c692d533799c32bfe724 100644 (file)
@@ -4,7 +4,7 @@ package SL::DB::BackgroundJob;
 
 use strict;
 
-use base qw(SL::DB::Object);
+use parent qw(SL::DB::Object);
 
 __PACKAGE__->meta->table('background_jobs');
 
@@ -12,9 +12,11 @@ __PACKAGE__->meta->columns(
   active       => { type => 'boolean' },
   cron_spec    => { type => 'varchar', length => 255 },
   data         => { type => 'text' },
+  description  => { type => 'text' },
   id           => { type => 'serial', not_null => 1 },
   last_run_at  => { type => 'timestamp' },
   next_run_at  => { type => 'timestamp' },
+  node_id      => { type => 'text' },
   package_name => { type => 'varchar', length => 255 },
   type         => { type => 'varchar', length => 255 },
 );