Para quem encontrar esta pergunta no Google ao tentar converter uma coluna inteira em um carimbo de data/hora:
ALTER TABLE my_table
ALTER COLUMN my_column
TYPE timestamp with time zone
USING to_timestamp(my_column);
ALTER TABLE my_table
ALTER COLUMN my_column
TYPE timestamp with time zone
USING to_timestamp(my_column);