This commit is contained in:
2026-08-14 14:45:39 +08:00
parent 2373d62ceb
commit 1ca36ae153
7 changed files with 21 additions and 9 deletions
@@ -0,0 +1,6 @@
-- 补齐历史文件上传任务的上传时间。
-- 文件任务创建时间即上传开始时间;仅回填空值,不覆盖已有记录。
UPDATE `blade_file_task`
SET `create_time` = `update_time`
WHERE `create_time` IS NULL
AND `update_time` IS NOT NULL;