13 lines
210 B
JavaScript
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)
|
||
|
}`,
|
||
|
},
|
||
|
},
|
||
|
})
|
||
|
}
|