summaryrefslogtreecommitdiff
path: root/src/api/models/access-token.ts
blob: f94df954d6ad7b9fd32e541cbe579790887ffb07 (plain)
1
2
3
4
5
6
const collection = global.db.collection('access_tokens');

collection.createIndex('token');
collection.createIndex('hash');

export default collection;