初始化

This commit is contained in:
Ran
2026-08-25 17:59:42 +08:00
commit 4b7380dd9b
408 changed files with 327400 additions and 0 deletions
@@ -0,0 +1,10 @@
BEGIN;
ALTER TABLE models DROP CONSTRAINT IF EXISTS models_text_billing_mode_check;
ALTER TABLE models DROP COLUMN IF EXISTS max_output_tokens;
ALTER TABLE models ADD CONSTRAINT models_text_billing_mode_check CHECK (
(model_type = 'text' AND text_billing_mode IN ('per_request', 'per_token'))
OR (model_type <> 'text' AND text_billing_mode IS NULL)
);
COMMIT;