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;