I'm coming from a MySQL world and am having a hard time doing things in PostgreSQL.
I have a column which looks like this in my GUI client: 
I'm not sure if it is an enum column, or a varchar with a constraint (are they the same thing in postgres?)
I want to change the type of the column to a varchar/string. I've tried this:
ALTER TABLE tablename ALTER COLUMN type TYPE character varying(255);
but no luck, I still see the constraints on the column
character varyingcolumn and the thing that you are talking about is indeed a constraint, if you want to get rid of it you should take a look atDROP CONSTRAINTstatement