fix the extraction cron to run every 10min, cache delete once a day

This commit is contained in:
Ulf Gebhardt 2023-11-02 21:36:45 +01:00
parent 193ba62a88
commit d6ab1b9ed1
Signed by: ulfgebhardt
GPG Key ID: DA6B843E748679C9

View File

@ -1,2 +1,2 @@
INSERT INTO `system_cron` (`class`, `min`, `hour`, `day`, `day_week`, `month`, `last_run`, `status`) VALUES ('\\SYSTEM\\CRON\\cron_log2sqlite', 0, 0, 1, 0, 0, '2015-01-01 01:00:00', 0);
INSERT INTO `system_cron` (`class`, `min`, `hour`, `day`, `day_week`, `month`, `last_run`, `status`) VALUES ('\\SYSTEM\\CRON\\cron_cache_delete', 10, 0, 1, 0, 0, '2015-01-01 01:00:00', 0);
INSERT INTO `system_cron` (`class`, `min`, `hour`, `day`, `day_week`, `month`, `last_run`, `status`) VALUES ('\\SYSTEM\\CRON\\cron_log2sqlite', 10, 0, 0, 0, 0, '2015-01-01 01:00:00', 0);
INSERT INTO `system_cron` (`class`, `min`, `hour`, `day`, `day_week`, `month`, `last_run`, `status`) VALUES ('\\SYSTEM\\CRON\\cron_cache_delete', 0, 0, 1, 0, 0, '2015-01-01 01:00:00', 0);