Improve emoji-picker (#5515)

* Improve emoji-picker

* remove unimplanted translation

* カテゴリのサジェスト

* use unique
This commit is contained in:
MeiMei 2019-10-21 00:43:39 +09:00 committed by syuilo
parent 97b6af62fe
commit 4c6c06c80a
11 changed files with 169 additions and 32 deletions

View file

@ -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,
})