I screwed up and created a column as a varchar(255) where that is no longer sufficient. I\'ve read that varchar has no performance benefits over text on Postgres, and so wou
ALTER TABLE table1 ALTER COLUMN column1 TYPE text;