summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorsyuilo <Syuilotan@yahoo.co.jp>2019-05-14 12:04:40 +0900
committerGitHub <noreply@github.com>2019-05-14 12:04:40 +0900
commit92dee53dd6c78cd6d2127d4083886997f491be0e (patch)
tree2071717c27eb9d14f75afc2c3a9790d69e02a936 /src
parentFix tag cloud on Welcome page (#4922) (diff)
downloadsharkey-92dee53dd6c78cd6d2127d4083886997f491be0e.tar.gz
sharkey-92dee53dd6c78cd6d2127d4083886997f491be0e.tar.bz2
sharkey-92dee53dd6c78cd6d2127d4083886997f491be0e.zip
Update note.ts
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;