Fix VNC auth DB index.

This commit is contained in:
Simo Kinnunen
2015-10-13 15:31:26 +09:00
parent 8f882702f4
commit 638322fd47

View File

@@ -18,8 +18,10 @@ module.exports = {
primaryKey: 'password'
, indexes: {
response: null
, responsePerDevice: function(row) {
return [row('response'), row('deviceId')]
, responsePerDevice: {
indexFunction: function(row) {
return [row('response'), row('deviceId')]
}
}
}
}