Add voice name flow controls and analytics

This commit is contained in:
Yera All
2026-04-05 03:26:18 +05:00
parent d15fcf7129
commit d959c2b2f0
31 changed files with 6410 additions and 152 deletions
@@ -0,0 +1,12 @@
CREATE TABLE IF NOT EXISTS voice_name_collection_settings (
id SERIAL PRIMARY KEY,
settings_key VARCHAR(64) NOT NULL UNIQUE,
config_json TEXT NOT NULL DEFAULT '{}',
updated_at VARCHAR(64) NOT NULL
);
CREATE INDEX IF NOT EXISTS idx_voice_name_collection_settings_key
ON voice_name_collection_settings(settings_key);
CREATE INDEX IF NOT EXISTS idx_voice_name_collection_settings_updated_at
ON voice_name_collection_settings(updated_at);