mirror of
https://iceshrimp.dev/limepotato/jormungandr-bite.git
synced 2024-11-17 07:27:36 -07: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;
|