summaryrefslogtreecommitdiff
path: root/src/models
diff options
context:
space:
mode:
authorsyuilo <syuilotan@yahoo.co.jp>2019-04-24 03:39:11 +0900
committersyuilo <syuilotan@yahoo.co.jp>2019-04-24 03:39:11 +0900
commit8a55bdd89da6aa1228612ed7a2449ad96d965b60 (patch)
treec3612f416ae99decf0292cfe39b09d3ad1ffad16 /src/models
parentMerge branch 'develop' of https://github.com/syuilo/misskey into develop (diff)
downloadsharkey-8a55bdd89da6aa1228612ed7a2449ad96d965b60.tar.gz
sharkey-8a55bdd89da6aa1228612ed7a2449ad96d965b60.tar.bz2
sharkey-8a55bdd89da6aa1228612ed7a2449ad96d965b60.zip
Increase reaction column length
Diffstat (limited to 'src/models')
-rw-r--r--src/models/entities/note-reaction.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/models/entities/note-reaction.ts b/src/models/entities/note-reaction.ts
index 1ce5d841fb..a958e89570 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;
}