Change sequence name in postgreSQL
ALTER SEQUENCE id_seq_player RENAME TO player_id_seq; is correct. You might want to add the schema name as well to ensure you are altering the correct one, but this should most likely work. If it timeouts, you might have another process that is locking your sequence. Is there a way for you to turn off all … Read more