mirror of
https://github.com/MisskeyIO/misskey
synced 2024-12-18 00:29:00 +09: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;
|