Created
April 7, 2016 13:34
-
-
Save makaroni4/8600ce51e583990c8e52c39d841ecadb to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
ALTER TABLE mc_subscribers ADD COLUMN id BIGSERIAL; | |
UPDATE mc_subscribers SET id = nextval(pg_get_serial_sequence('mc_subscribers', 'id')); | |
ALTER TABLE mc_subscribers ADD PRIMARY KEY (id); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment