From 92dee53dd6c78cd6d2127d4083886997f491be0e Mon Sep 17 00:00:00 2001 From: syuilo Date: Tue, 14 May 2019 12:04:40 +0900 Subject: [PATCH] Update note.ts --- src/models/entities/note.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/models/entities/note.ts b/src/models/entities/note.ts index b71c02234..33a6d2bc2 100644 --- a/src/models/entities/note.ts +++ b/src/models/entities/note.ts @@ -43,8 +43,8 @@ export class Note { @JoinColumn() public renote: Note | null; - @Column({ - type: 'text', nullable: true + @Column('varchar', { + length: 8192, nullable: true }) public text: string | null;