diff options
| author | syuilo <Syuilotan@yahoo.co.jp> | 2019-05-14 12:04:40 +0900 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2019-05-14 12:04:40 +0900 |
| commit | 92dee53dd6c78cd6d2127d4083886997f491be0e (patch) | |
| tree | 2071717c27eb9d14f75afc2c3a9790d69e02a936 /src | |
| parent | Fix tag cloud on Welcome page (#4922) (diff) | |
| download | sharkey-92dee53dd6c78cd6d2127d4083886997f491be0e.tar.gz sharkey-92dee53dd6c78cd6d2127d4083886997f491be0e.tar.bz2 sharkey-92dee53dd6c78cd6d2127d4083886997f491be0e.zip | |
Update note.ts
Diffstat (limited to 'src')
| -rw-r--r-- | src/models/entities/note.ts | 4 |
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; |