mirror of
https://git.joinsharkey.org/Sharkey/Sharkey.git
synced 2024-11-09 00:23:08 +02:00
7 lines
152 B
TypeScript
7 lines
152 B
TypeScript
|
const collection = global.db.collection('access_tokens');
|
||
|
|
||
|
collection.createIndex('token');
|
||
|
collection.createIndex('hash');
|
||
|
|
||
|
export default collection;
|