summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/models/entities/note.ts4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/models/entities/note.ts b/src/models/entities/note.ts
index b71c022341..33a6d2bc27 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;