From 8a55bdd89da6aa1228612ed7a2449ad96d965b60 Mon Sep 17 00:00:00 2001 From: syuilo Date: Wed, 24 Apr 2019 03:39:11 +0900 Subject: [PATCH] Increase reaction column length --- src/models/entities/note-reaction.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/models/entities/note-reaction.ts b/src/models/entities/note-reaction.ts index 1ce5d841f..a958e8957 100644 --- a/src/models/entities/note-reaction.ts +++ b/src/models/entities/note-reaction.ts @@ -36,7 +36,7 @@ export class NoteReaction { public note: Note | null; @Column('varchar', { - length: 32 + length: 128 }) public reaction: string; }