Last active
April 1, 2017 07:20
-
-
Save sany2k8/6ee5914b0b54bf3826798623501c7457 to your computer and use it in GitHub Desktop.
This file contains 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
CREATE SEQUENCE tbl_name_id_seq; | |
ALTER TABLE tbl_name ALTER COLUMN id SET DEFAULT nextval('tbl_name_id_seq'); | |
select setval('tbl_name_id_seq', (select max(id)+1 from tbl_name), false); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment