14 lines
287 B
PL/PgSQL
Executable File
14 lines
287 B
PL/PgSQL
Executable File
-- Type: UNDO
|
|
-- Name: add_id_to_newsletter_email
|
|
-- Description: Add id field to newsletter_email table
|
|
|
|
BEGIN;
|
|
|
|
ALTER TABLE omnivore.newsletter_emails
|
|
DROP COLUMN id;
|
|
|
|
ALTER TABLE omnivore.newsletter_emails
|
|
ADD CONSTRAINT newsletter_emails_pkey PRIMARY KEY (address);
|
|
|
|
COMMIT;
|