summaryrefslogtreecommitdiff
path: root/src/api/models/app.ts
blob: 221a53906a387523f70bfd3490bc92267187538a (plain)
1
2
3
4
5
6
7
const collection = global.db.collection('apps');

collection.createIndex('name_id');
collection.createIndex('name_id_lower');
collection.createIndex('secret');

export default collection;