Postgres converte a coluna exisitando em texto
# POSTGRESQL - Convert an existing column to text
ALTER TABLE your_table
ALTER COLUMN your_column TYPE text
Trained Tuna
# POSTGRESQL - Convert an existing column to text
ALTER TABLE your_table
ALTER COLUMN your_column TYPE text