Projekt

Allgemein

Profil

Herunterladen (799 Bytes) Statistiken
| Zweig: | Markierung: | Revision:
295e585a Moritz Bunkus
# This file has been auto-generated. Do not modify it; it will be overwritten
# by rose_auto_create_model.pl automatically.
package SL::DB::BackgroundJob;

use strict;

2ea07c13 Sven Schöling
use parent qw(SL::DB::Object);
295e585a Moritz Bunkus
b8b112a3 Sven Schöling
__PACKAGE__->meta->table('background_jobs');
295e585a Moritz Bunkus
b8b112a3 Sven Schöling
__PACKAGE__->meta->columns(
3eb3d1b1 Moritz Bunkus
active => { type => 'boolean' },
cron_spec => { type => 'varchar', length => 255 },
data => { type => 'text' },
230a0760 Werner Hahn
description => { type => 'text' },
b8b112a3 Sven Schöling
id => { type => 'serial', not_null => 1 },
last_run_at => { type => 'timestamp' },
next_run_at => { type => 'timestamp' },
a354dfce Moritz Bunkus
node_id => { type => 'text' },
3eb3d1b1 Moritz Bunkus
package_name => { type => 'varchar', length => 255 },
type => { type => 'varchar', length => 255 },
295e585a Moritz Bunkus
);

b8b112a3 Sven Schöling
__PACKAGE__->meta->primary_key_columns([ 'id' ]);

295e585a Moritz Bunkus
1;
;