Is there a way to specify a compound unique index in loki ? I tried something like:
db.addCollection('contents', {unique: ['id', 'wsID']});
but this appears to make 2 different unique indexes.. it's the combination of the two that I'd like to make unique.
Many thanks for any suggestions.