Files
omnivore/packages/db/migrations/0098.undo.create_features_table.sql
2022-11-08 17:30:03 +08:00

15 lines
356 B
PL/PgSQL
Executable File

-- Type: UNDO
-- Name: create_features_table
-- Description: Create features table to store opt-in features by users
BEGIN;
DROP TABLE IF EXISTS omnivore.features;
ALTER TABLE omnivore.user_personalization
DROP COLUMN IF EXISTS speech_secondary_voice,
ALTER COLUMN speech_rate TYPE integer,
ALTER COLUMN speech_volume TYPE integer;
COMMIT;