Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

BC-8339 create index on files.createdAt #5320

Merged
merged 3 commits into from
Oct 30, 2024
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions apps/server/src/migrations/mikro-orm/Migration20241030126666.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
import { Migration } from '@mikro-orm/migrations-mongodb';

export class Migration202410041210124 extends Migration {
async up(): Promise<void> {
await this.getCollection('files').createIndex({ createdAt: 1 });
}

async down(): Promise<void> {
// no need
}
}
1 change: 1 addition & 0 deletions src/services/fileStorage/model.js
Original file line number Diff line number Diff line change
Expand Up @@ -129,6 +129,7 @@ fileSchema.index({ 'permissions.refId': 1, 'permissions.refPermModel': 1 }); //
// Speed up directory listings
fileSchema.index({ owner: 1, parent: 1 }); // ?
fileSchema.index({ 'securityCheck.requestToken': 1 }); // ?
fileSchema.index({ createdAt: 1 });

const FileModel = mongoose.model('file', fileSchema);
const FilePermissionModel = mongoose.model('filePermissionModel', permissionSchema);
Expand Down
Loading