summaryrefslogtreecommitdiff
path: root/migration
diff options
context:
space:
mode:
authorsyuilo <Syuilotan@yahoo.co.jp>2020-02-01 16:57:12 +0900
committersyuilo <Syuilotan@yahoo.co.jp>2020-02-01 16:57:12 +0900
commitf04002188de44baf67a5ff03eb4d2e9fe6115504 (patch)
tree02e887d17e534866a1ded54194dc446b57e6f96b /migration
parentFix test (#5801) (diff)
downloadsharkey-f04002188de44baf67a5ff03eb4d2e9fe6115504.tar.gz
sharkey-f04002188de44baf67a5ff03eb4d2e9fe6115504.tar.bz2
sharkey-f04002188de44baf67a5ff03eb4d2e9fe6115504.zip
Resolve #5513
Diffstat (limited to 'migration')
-rw-r--r--migration/1580543501339-v12-13.ts14
1 files changed, 14 insertions, 0 deletions
diff --git a/migration/1580543501339-v12-13.ts b/migration/1580543501339-v12-13.ts
new file mode 100644
index 0000000000..7f5d8b8030
--- /dev/null
+++ b/migration/1580543501339-v12-13.ts
@@ -0,0 +1,14 @@
+import {MigrationInterface, QueryRunner} from "typeorm";
+
+export class v12131580543501339 implements MigrationInterface {
+ name = 'v12131580543501339'
+
+ public async up(queryRunner: QueryRunner): Promise<any> {
+ await queryRunner.query(`CREATE INDEX "IDX_NOTE_TAGS" ON "note" USING gin ("tags")`, undefined);
+ }
+
+ public async down(queryRunner: QueryRunner): Promise<any> {
+ await queryRunner.query(`DROP INDEX "IDX_NOTE_TAGS"`, undefined);
+ }
+
+}