In my PostgreSQL database I have a unique index created this way:
CREATE UNIQUE INDEX <my_index> ON <my_table> USING btree (my_column)
Is there way to alter the index to remove the unique constraint? I looked at ALTER INDEX documentation but it doesn't seem to do what I need.
I know I can remove the index and create another one, but I'd like to find a better way, if it exists.