Files
omnivore/packages/db/migrations/0096.undo.subscriptions_icon.sql
2022-09-27 11:58:55 +08:00

10 lines
177 B
PL/PgSQL
Executable File

-- Type: UNDO
-- Name: subscriptions_icon
-- Description: Add icon field to subscriptions table
BEGIN;
ALTER TABLE omnivore.subscriptions DROP COLUMN IF EXISTS icon;
COMMIT;