mirror of
https://github.com/memohai/Memoh.git
synced 2026-04-27 07:16:19 +09:00
6 lines
225 B
SQL
6 lines
225 B
SQL
-- 0070_add_bot_transcription_model
|
|
-- Add bots.transcription_model_id for bot-level speech-to-text defaults.
|
|
|
|
ALTER TABLE bots
|
|
ADD COLUMN IF NOT EXISTS transcription_model_id UUID REFERENCES models(id) ON DELETE SET NULL;
|