7 lines
238 B
SQL
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;
|