summary refs log tree commit diff
path: root/src/schema/Emoji.ts
diff options
context:
space:
mode:
authorFlam3rboy <34555296+Flam3rboy@users.noreply.github.com>2021-04-06 18:02:00 +0200
committerFlam3rboy <34555296+Flam3rboy@users.noreply.github.com>2021-04-06 18:02:00 +0200
commit727672470215d9b03f0e668a98dea45f8edbb7d0 (patch)
tree69322efbe1b3de938bb54fd83f3d96c79913a269 /src/schema/Emoji.ts
parent:bug: fix hearbeat gateway (diff)
downloadserver-727672470215d9b03f0e668a98dea45f8edbb7d0.tar.xz
:art: Convert id bigint to string
Diffstat (limited to 'src/schema/Emoji.ts')
-rw-r--r--src/schema/Emoji.ts4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/schema/Emoji.ts b/src/schema/Emoji.ts

index 09f3ebb1..413b8359 100644 --- a/src/schema/Emoji.ts +++ b/src/schema/Emoji.ts
@@ -1,11 +1,11 @@ export const EmojiSchema = { name: String, // the name of the emoji - $id: BigInt, // the id of the emoji + $id: String, // the id of the emoji animated: Boolean, // whether this emoji is animated }; export interface EmojiSchema { name: string; - id?: bigint; + id?: string; animated: Boolean; }