Hey, is there a way to do a unique index across tw...
# exposed
s
Hey, is there a way to do a unique index across two columns?
t
Copy code
FooTable : Table() {
 ... // column defenition
  init {
        index(true, col1, col2)
    }
}
👍 1