Increase reaction column length

This commit is contained in:
syuilo 2019-04-24 03:39:11 +09:00
parent 07012694f2
commit 2afaa1105c

View File

@ -36,7 +36,7 @@ export class NoteReaction {
public note: Note | null; public note: Note | null;
@Column('varchar', { @Column('varchar', {
length: 32 length: 128
}) })
public reaction: string; public reaction: string;
} }