forked from FoundKeyGang/FoundKey
Resolve #5513
This commit is contained in:
parent
d00e4433ee
commit
f04002188d
3 changed files with 16 additions and 0 deletions
|
@ -85,6 +85,7 @@ Misskey v12では、クライアントが設計し直され、全く新しいUI
|
||||||
* OAuth認証画面の配色がおかしい問題を修正
|
* OAuth認証画面の配色がおかしい問題を修正
|
||||||
* 設定画面で、アバターを更新してもアバターの画像がその場で更新されない問題を修正
|
* 設定画面で、アバターを更新してもアバターの画像がその場で更新されない問題を修正
|
||||||
* 投稿詳細/ユーザー詳細 画面でadminや公式アカウントマークが表示されない問題を修正
|
* 投稿詳細/ユーザー詳細 画面でadminや公式アカウントマークが表示されない問題を修正
|
||||||
|
* ハッシュタグ検索が遅い問題を修正
|
||||||
* APIのリクエスト方法(websocket/HTTP)によって返ってくるエラーの内容に違いがある問題を修正
|
* APIのリクエスト方法(websocket/HTTP)によって返ってくるエラーの内容に違いがある問題を修正
|
||||||
* ストリーミングのuserListチャンネルで存在しないリストでもsubscribeできて、リストのIDがわかれば他人のリストでもsubscribeできる問題を修正
|
* ストリーミングのuserListチャンネルで存在しないリストでもsubscribeできて、リストのIDがわかれば他人のリストでもsubscribeできる問題を修正
|
||||||
* Redis subscriberで認証ができないのを修正
|
* Redis subscriberで認証ができないのを修正
|
||||||
|
|
14
migration/1580543501339-v12-13.ts
Normal file
14
migration/1580543501339-v12-13.ts
Normal file
|
@ -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);
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
|
@ -4,6 +4,7 @@ import { DriveFile } from './drive-file';
|
||||||
import { id } from '../id';
|
import { id } from '../id';
|
||||||
|
|
||||||
@Entity()
|
@Entity()
|
||||||
|
@Index('IDX_NOTE_TAGS', { synchronize: false })
|
||||||
export class Note {
|
export class Note {
|
||||||
@PrimaryColumn(id())
|
@PrimaryColumn(id())
|
||||||
public id: string;
|
public id: string;
|
||||||
|
|
Loading…
Reference in a new issue