The case-sensitive nature of Postgres was causing a problem for my application, so we converted all varchar columns to be of type "citext" instead. citext is a Postgres extension that performs some downcases behind the scenes in order to do case-insensitive matching. However, now every form in my app is jacked up because "citext" is being rendered as a 20 unit high text "area" instead of a text "field".
I'm wading through the code, but perhaps someone knows of a way I can short-circuit this process.
Thanks for any help you can offer!