forked from niuniu/llm-intelligence
6 lines
141 B
MySQL
6 lines
141 B
MySQL
|
|
-- 回填历史手工导入模型的 batch_id,避免血缘字段为空
|
|||
|
|
|
|||
|
|
UPDATE models
|
|||
|
|
SET batch_id = 'manual-seed'
|
|||
|
|
WHERE batch_id IS NULL;
|