mirror of
https://git.joinsharkey.org/Sharkey/Sharkey.git
synced 2024-11-13 08:23:08 +02: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;
|