I was reading [this article](https://www.prisma.io/docs/orm/prisma-schema/data-model/indexes?utm_source=docs&utm_medium=orm-docs#configuring-the-index-sort-order-with-sort) when I stumbled upon this SQL: ```sql CREATE TABLE `Unique` ( `unique` INT, CONSTRAINT `Unique_unique_key` UNIQUE (`unique` DESC) ) ``` I didn't know you could specify ``(`unique` DESC)``, but when I went to do some research about it I couldn't find any documentation in Postgresql.