1
0
Fork 1
mirror of https://example.com synced 2024-11-23 23:56:40 +09:00
firefish/packages/backend/migration/1581708415836-drive-user-folder-id-index.js
syuilo a8e8b2e2cf fix migrations
Fix #8363
2022-03-01 00:07:03 +09:00

13 lines
440 B
JavaScript

export class driveUserFolderIdIndex1581708415836 {
constructor() {
this.name = 'driveUserFolderIdIndex1581708415836';
}
async up(queryRunner) {
await queryRunner.query(`CREATE INDEX "IDX_55720b33a61a7c806a8215b825" ON "drive_file" ("userId", "folderId", "id") `, undefined);
}
async down(queryRunner) {
await queryRunner.query(`DROP INDEX "IDX_55720b33a61a7c806a8215b825"`, undefined);
}
}