Does anyone know how to define a multi-column inde...
# ktor
r
Does anyone know how to define a multi-column index in Exposed, where one the columns is nullable, and the nulls are not treated as distinct. This equivalent in PG SQL:
Copy code
create unique index on mytable(col, nullableCol) nulls not distinct;
a
#exposed
👍 1
r
ugh damn 🤦