mirror of
https://iceshrimp.dev/limepotato/jormungandr-bite.git
synced 2025-01-15 18:10:59 -07:00
8 lines
188 B
TypeScript
8 lines
188 B
TypeScript
|
const collection = global.db.collection('apps');
|
||
|
|
||
|
collection.createIndex('name_id');
|
||
|
collection.createIndex('name_id_lower');
|
||
|
collection.createIndex('secret');
|
||
|
|
||
|
export default collection;
|