From 4c6c06c80afd3e2309b305f40c2e67e48863bf31 Mon Sep 17 00:00:00 2001 From: MeiMei <30769358+mei23@users.noreply.github.com> Date: Mon, 21 Oct 2019 00:43:39 +0900 Subject: Improve emoji-picker (#5515) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * Improve emoji-picker * remove unimplanted translation * カテゴリのサジェスト * use unique --- src/models/entities/emoji.ts | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'src/models') diff --git a/src/models/entities/emoji.ts b/src/models/entities/emoji.ts index 020636a7fb..d6080ae099 100644 --- a/src/models/entities/emoji.ts +++ b/src/models/entities/emoji.ts @@ -24,6 +24,11 @@ export class Emoji { }) public host: string | null; + @Column('varchar', { + length: 128, nullable: true + }) + public category: string | null; + @Column('varchar', { length: 512, }) -- cgit v1.2.3-freya