Files
llm-intelligence/db/migrations/004_backfill_models_batch_id.sql
2026-05-13 14:42:45 +08:00

6 lines
141 B
SQL
Raw Permalink Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
-- 回填历史手工导入模型的 batch_id避免血缘字段为空
UPDATE models
SET batch_id = 'manual-seed'
WHERE batch_id IS NULL;