mirror of
https://github.com/memohai/Memoh.git
synced 2026-04-25 07:00:48 +09:00
90ac222bc9
- Add `enable` column (default false) to search_providers and tts_providers tables - Auto-create default entries for all provider types on startup (disabled by default) - Add enable/disable Switch toggle in frontend for both search and TTS providers - Show green status dot in sidebar for enabled providers, sort enabled first - Filter bot settings dropdowns to only show enabled providers
5 lines
203 B
SQL
5 lines
203 B
SQL
-- 0049_search_provider_enable
|
|
-- Add enable column to search_providers table for toggling providers on/off.
|
|
|
|
ALTER TABLE search_providers ADD COLUMN IF NOT EXISTS enable BOOLEAN NOT NULL DEFAULT false;
|