I updated sqlite.swift to version 0.11.4, and my compiler repots an error when I create index including two columns.
Before I was using command
try db.run(table.createIndex([column1, column2], unique: true, ifNotExists: true))
After update, it doesn't work anymore. I should use Expressible. But I'm not that advance.
Contextual type 'Expressible' cannot be used with array literal
Could you please give me a hand here?
Thanks!!!