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

12 lines
276 B
PL/PgSQL
Executable File

-- Type: UNDO
-- Name: highlight_note_reply_text_limit
-- Description: update text limit on highlight note and reply
BEGIN;
ALTER TABLE omnivore.highlight ALTER COLUMN annotation TYPE varchar(400);
ALTER TABLE omnivore.highlight_reply ALTER COLUMN text TYPE text;
COMMIT;