2026年5月29日 02:28

This commit is contained in:
hajimi
2026-05-28 18:28:09 +00:00
parent f85828ee14
commit 64f09e2e53
12 changed files with 375 additions and 279 deletions
@@ -0,0 +1,7 @@
INSERT INTO `la_dev_crontab` (`name`, `type`, `system`, `remark`, `command`, `params`, `status`, `expression`, `create_time`, `update_time`)
SELECT '世界杯英文文章翻译预热', 1, 0, '仅翻译世界杯分类中疑似英文文章,预热翻译缓存', 'worldcup_article_translate', '', 1, '*/10 * * * *', UNIX_TIMESTAMP(), UNIX_TIMESTAMP()
WHERE NOT EXISTS (
SELECT 1 FROM `la_dev_crontab`
WHERE `command` = 'worldcup_article_translate'
AND `delete_time` IS NULL
);