Skip to content

Commit

Permalink
BC-8571 adding index to files.securityCheck.requestToken
Browse files Browse the repository at this point in the history
  • Loading branch information
Loki-Afro committed Dec 13, 2024
1 parent 32bc14a commit 4b0f208
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 0 deletions.
11 changes: 11 additions & 0 deletions apps/server/src/migrations/mikro-orm/Migration20241213145222.ts
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
}
}
9 changes: 9 additions & 0 deletions backup/setup/migrations.json
Original file line number Diff line number Diff line change
Expand Up @@ -304,5 +304,14 @@
"created_at": {
"$date": "2024-11-20T17:03:31.473Z"
}
},
{
"_id": {
"$oid": "675c3caac52cd071103a87bb"
},
"name": "Migration20241213145222",
"created_at": {
"$date": "2024-11-20T17:03:31.473Z"
}
}
]

0 comments on commit 4b0f208

Please sign in to comment.