10 lines
177 B
PL/PgSQL
Executable File
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;
|