www_site/services/api/migrations/007_tts_settings.sql

10 lines
329 B
MySQL
Raw Normal View History

CREATE TABLE IF NOT EXISTS tts_settings (
id INTEGER PRIMARY KEY CHECK (id = 1),
upstream_url TEXT NOT NULL DEFAULT '',
api_key TEXT NOT NULL DEFAULT '',
timeout_seconds INTEGER NOT NULL DEFAULT 120,
default_model TEXT NOT NULL DEFAULT 'qwen3-tts',
updated_by UUID,
updated_at TIMESTAMPTZ NOT NULL DEFAULT now()
);