Files
sbnews/docs/sql/disable_article_ai_comment_crontab.sql
T
2026-06-12 17:34:00 +08:00

7 lines
238 B
SQL

UPDATE `la_dev_crontab`
SET `status` = 0,
`update_time` = UNIX_TIMESTAMP(),
`remark` = CONCAT(IFNULL(`remark`, ''), ' [已迁移到 Docker ai_comment_dispatch]')
WHERE `command` = 'article_ai_comment'
AND `delete_time` IS NULL;