8 lines
489 B
SQL
8 lines
489 B
SQL
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
|
|
);
|