1
0
Fork 0
mirror of https://github.com/openstf/stf synced 2025-10-04 02:09:32 +02:00
OpenSTF/lib/db/tables.js
2014-03-19 20:36:46 +09:00

21 lines
333 B
JavaScript

module.exports = {
users: {
primaryKey: 'email'
}
, devices: {
primaryKey: 'serial'
, indexes: {
ownerEmail: function(device) {
return device('owner')('email')
}
, lastHeartbeatAt: null
}
}
, logs: {
primaryKey: 'id'
, indexes: {
serial: null
, timestamp: null
}
}
}