10 lines
169 B
PL/PgSQL
Executable File
10 lines
169 B
PL/PgSQL
Executable File
-- Type: DO
|
|
-- Name: subscriptions_icon
|
|
-- Description: Add icon field to subscriptions table
|
|
|
|
BEGIN;
|
|
|
|
ALTER TABLE omnivore.subscriptions ADD COLUMN icon text;
|
|
|
|
COMMIT;
|