tentando adicionar auto_increment a uma coluna existente
ALTER TABLE table_name ALTER COLUMN id_column SET DEFAULT nextval('table_id_column_seq');
tente 1:
CREATE SEQUENCE table_id_column_seq AS integer START 1 OWNED BY table.id_column;
Erro:
ERRO: a sequência deve ter o mesmo dono da tabela à qual está vinculada
tente 2:
CREATE SEQUENCE table_id_column_seq AS integer START 1 OWNED TO postgres;
Erro:
ERROR: syntax error at or near "integer"
LINE 1: CREATE SEQUENCE table_id_column_seq integer START 1...
^
Como deveria ser?