1 -- @tag: full_texts_background_job
 
   2 -- @description: Hintergrundjob für tägliche Extraktion von Texten aus Dokumenten
 
   3 -- @depends: release_3_6_0
 
   5 INSERT INTO background_jobs (type, package_name, active, cron_spec, next_run_at)
 
   6 VALUES ('interval', 'CreateOrUpdateFileFullTexts', true, '20 3 * * *',
 
   7   CAST(current_date AS timestamp) + CAST(
 
   9      WHEN extract('hour' FROM current_timestamp) < 2 THEN '3 hours 20 minutes'
 
  10      ELSE                                                 '1 day 3 hours 20 minutes'