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-01-29 19:50:47 +09:00

15 lines
199 B
JavaScript

module.exports = {
users: {
primaryKey: 'email'
}
, devices: {
primaryKey: 'serial'
}
, logs: {
primaryKey: 'id'
, indexes: {
serial: null
, timestamp: null
}
}
}