fix for stats and model selection
Some checks failed
Weekly OSV dependency audit / dependency-audit (push) Failing after 5s

This commit is contained in:
Georg Bauer
2026-09-05 08:17:07 +02:00
parent bd6353804b
commit b99ce2aa10
5 changed files with 116 additions and 24 deletions

View File

@@ -0,0 +1,13 @@
ALTER TABLE sessions ADD COLUMN model_without_qwen TEXT
CHECK (model_without_qwen IS NULL OR model_without_qwen IN (
'deepseek-v4-flash-0731',
'deepseek-v4-pro',
'glm-5.2',
'glm-5.3-flash'
));
UPDATE sessions SET model_without_qwen = CASE
WHEN model = 'qwen3.8-flash-next' THEN NULL
ELSE model
END;
ALTER TABLE sessions DROP COLUMN model;
ALTER TABLE sessions RENAME COLUMN model_without_qwen TO model;