Files
omnivore/packages/db/migrations/0093.undo.speech.sql
2022-08-18 19:23:41 +08:00

15 lines
335 B
PL/PgSQL
Executable File

-- Type: UNDO
-- Name: speech
-- Description: Add speech table containing text to speech audio_url and speech_marks
BEGIN;
DROP TABLE IF EXISTS omnivore.speech;
ALTER TABLE omnivore.user_personalization
DROP COLUMN IF EXISTS speech_voice,
DROP COLUMN IF EXISTS speech_rate,
DROP COLUMN IF EXISTS speech_volume;
COMMIT;