Files
llm-intelligence/db/migrations/004_backfill_models_batch_id.sql

6 lines
141 B
MySQL
Raw Normal View History

-- 回填历史手工导入模型的 batch_id避免血缘字段为空
UPDATE models
SET batch_id = 'manual-seed'
WHERE batch_id IS NULL;