mirror of
https://github.com/omnivore-app/omnivore.git
synced 2026-03-11 08:54:26 +00:00
14 lines
335 B
PL/PgSQL
Executable file
14 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;
|