Files
ai/backend/prisma/migrations/20260616124000_seedream_image_timeout_10m/migration.sql
T

11 lines
330 B
SQL

UPDATE `provider_configs`
SET
`config_json` = JSON_SET(COALESCE(`config_json`, JSON_OBJECT()), '$.timeout_ms', 600000),
`updated_at` = NOW(3)
WHERE `provider_type` = 'ImageProvider'
AND `provider_code` IN (
'volcengine-seedream-50-image',
'volcengine-seedream-50-lite-image',
'volcengine-seedream-45-image'
);