-
Notifications
You must be signed in to change notification settings - Fork 17
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
BC-8571 adding index to files.securityCheck.requestToken
- Loading branch information
Showing
2 changed files
with
20 additions
and
0 deletions.
There are no files selected for viewing
11 changes: 11 additions & 0 deletions
11
apps/server/src/migrations/mikro-orm/Migration20241213145222.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
import { Migration } from '@mikro-orm/migrations-mongodb'; | ||
|
||
export class Migration20241213145222 extends Migration { | ||
public async up(): Promise<void> { | ||
await this.getCollection('files').createIndex({ 'securityCheck.requestToken': 1 }); | ||
} | ||
|
||
public async down(): Promise<void> { | ||
// no need | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters