mirror of
https://iceshrimp.dev/limepotato/jormungandr-bite.git
synced 2025-01-26 09:36:02 -07:00
Fix index creation
This commit is contained in:
parent
59799c7b19
commit
39762791a0
1 changed files with 1 additions and 1 deletions
|
@ -3,7 +3,7 @@ import monkDb, { nativeDbConn } from '../../db/mongodb';
|
||||||
|
|
||||||
const collection = monkDb.get('drive_files.files');
|
const collection = monkDb.get('drive_files.files');
|
||||||
|
|
||||||
(collection as any).createIndex('hash'); // fuck type definition
|
(collection as any).createIndex('md5'); // fuck type definition
|
||||||
|
|
||||||
export default collection as any; // fuck type definition
|
export default collection as any; // fuck type definition
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue