1
0
mirror of https://github.com/misskey-dev/misskey synced 2025-01-05 09:23:48 +09:00
misskey/src/api/models/access-token.ts

7 lines
152 B
TypeScript
Raw Normal View History

const collection = global.db.collection('access_tokens');
collection.createIndex('token');
collection.createIndex('hash');
export default collection;