* add unsubscribe resolver * add subscription to articles api response * revert yarn.lock changes
10 lines
210 B
PL/PgSQL
Executable File
10 lines
210 B
PL/PgSQL
Executable File
-- Type: UNDO
|
|
-- Name: add_newsletter_email_to_subscriptions
|
|
-- Description: Add newsletter email field to subscriptions table
|
|
|
|
BEGIN;
|
|
|
|
ALTER TABLE omnivore.subscriptions DROP COLUMN newsletter_email;
|
|
|
|
COMMIT;
|