Add icon field to subscriptions table

This commit is contained in:
Hongbo Wu
2022-09-27 11:58:55 +08:00
parent 3a93e0a135
commit 0cd73053c3
2 changed files with 18 additions and 0 deletions

View File

@ -0,0 +1,9 @@
-- Type: DO
-- Name: subscriptions_icon
-- Description: Add icon field to subscriptions table
BEGIN;
ALTER TABLE omnivore.subscriptions ADD COLUMN icon text;
COMMIT;

View File

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