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

15 lines
472 B
JavaScript
Raw Normal View History

2021-11-11 11:02:25 -06:00
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
class v12131580543501339 {
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);
}
}
exports.v12131580543501339 = v12131580543501339;