1
0
Fork 0
mirror of synced 2024-07-06 06:50:49 +12:00
budibase/packages/server/db/initialiseClientDb.js
2020-04-24 17:28:32 +01:00

13 lines
210 B
JavaScript

module.exports = async db => {
await db.put({
_id: "_design/client",
views: {
by_type: {
map: `function(doc) {
emit([doc.type], doc._id)
}`,
},
},
})
}