summaryrefslogtreecommitdiff
path: root/src/models
diff options
context:
space:
mode:
authorMeiMei <30769358+mei23@users.noreply.github.com>2020-03-06 23:09:06 +0900
committerGitHub <noreply@github.com>2020-03-06 23:09:06 +0900
commit4c26e3c54d628a584a1e00e0483b10e97f261b0d (patch)
treeb42ff9afec9fa8ef66e01f44982a9465102ffbb4 /src/models
parentダークテーマ利用時にセレクトが使いにくくなる問題を... (diff)
downloadmisskey-4c26e3c54d628a584a1e00e0483b10e97f261b0d.tar.gz
misskey-4c26e3c54d628a584a1e00e0483b10e97f261b0d.tar.bz2
misskey-4c26e3c54d628a584a1e00e0483b10e97f261b0d.zip
note_reaction.reaction は 130文字に (#6105)
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 a958e89570..995748760c 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: 128
+ length: 130
})
public reaction: string;
}