diff options
| author | syuilo <syuilotan@yahoo.co.jp> | 2019-04-24 03:39:11 +0900 |
|---|---|---|
| committer | syuilo <syuilotan@yahoo.co.jp> | 2019-04-24 03:39:11 +0900 |
| commit | 8a55bdd89da6aa1228612ed7a2449ad96d965b60 (patch) | |
| tree | c3612f416ae99decf0292cfe39b09d3ad1ffad16 /src/models | |
| parent | Merge branch 'develop' of https://github.com/syuilo/misskey into develop (diff) | |
| download | sharkey-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.ts | 2 |
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; } |