1
0
Fork 0
mirror of https://github.com/paricafe/misskey.git synced 2025-01-30 21:30:17 -06:00
paricafe/packages/backend/migration/1580543501339-v12-13.js

17 lines
457 B
JavaScript
Raw Normal View History

/*
2024-02-11 20:37:45 -06:00
* SPDX-FileCopyrightText: syuilo and misskey-project
* SPDX-License-Identifier: AGPL-3.0-only
*/
2022-02-28 09:07:03 -06:00
export class v12131580543501339 {
2021-11-11 11:02:25 -06:00
constructor() {
this.name = 'v12131580543501339';
}
async up(queryRunner) {
await queryRunner.query(`CREATE INDEX "IDX_NOTE_TAGS" ON "note" USING gin ("tags")`, undefined);
}
async down(queryRunner) {
await queryRunner.query(`DROP INDEX "IDX_NOTE_TAGS"`, undefined);
}
}