1
0
Fork 0
mirror of synced 2024-09-16 17:29:39 +12:00
budibase/packages/server/db/initialiseClientDb.js
2020-04-24 17:28:32 +01:00

12 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)
}`,
},
},
})
}