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