omnivore/packages/db/migrations/0093.undo.speech.sql

15 lines
335 B
MySQL
Raw Normal View History

2022-08-12 09:53:41 +00:00
-- 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;