omnivore/packages/db/migrations/0098.undo.create_features_table.sql

15 lines
412 B
MySQL
Raw Normal View History

2022-11-08 09:30:03 +00:00
-- 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,
2022-11-09 03:32:08 +00:00
ALTER COLUMN speech_rate TYPE integer USING speech_rate::integer,
ALTER COLUMN speech_volume TYPE integer USING speech_volume::integer;
2022-11-08 09:30:03 +00:00
COMMIT;