Files
omnivore/packages/db/migrations/0027.undo.highlight_short_id_field.sql
2022-02-11 09:24:33 -08:00

11 lines
186 B
PL/PgSQL
Executable File

-- Type: UNDO
-- Name: highlight_short_id_field
-- Description: Add short_id field to omnivore.highlight table
BEGIN;
ALTER TABLE omnivore.highlight
DROP COLUMN short_id;
COMMIT;