I\'d like to change the column type from an int to a uuid. I am using the following statement
int
uuid
ALTER TABLE tableA ALTER COLUMN colA
Just if someone comes across this old topic. I solved the problem by first altering the field into a CHAR type and then into UUID type.