Postgres konvertieren die Existierspalte in Text
# 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