1 -- @tag: emmvee_background_jobs
 
   2 -- @description: Tabellen für Hintergrundjobs
 
   3 -- @depends: release_2_6_1
 
   6 CREATE TABLE background_jobs (
 
   8     type character varying(255),
 
   9     package_name character varying(255),
 
  10     last_run_at timestamp without time zone,
 
  11     next_run_at timestamp without time zone,
 
  14     cron_spec character varying(255),
 
  19 CREATE TABLE background_job_histories (
 
  21     package_name character varying(255),
 
  22     run_at timestamp without time zone,
 
  23     status character varying(255),