I have text column which has to be unique, but case insensitive. However I have to store text in original form (I can't transform it to lower/upper case). Is it possible in Postgres? Or I have to store two columns - one with original text and one (with unique index) transformed to lower case for example?