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

11 lines
185 B
PL/PgSQL
Executable File

-- Type: UNDO
-- Name: article_published_at
-- Description: Adds published_at column for the article table
BEGIN;
ALTER TABLE omnivore.article
DROP COLUMN published_at;
COMMIT;