From 727672470215d9b03f0e668a98dea45f8edbb7d0 Mon Sep 17 00:00:00 2001 From: Flam3rboy <34555296+Flam3rboy@users.noreply.github.com> Date: Tue, 6 Apr 2021 18:02:00 +0200 Subject: :art: Convert id bigint to string --- src/schema/Emoji.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/schema/Emoji.ts') 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; } -- cgit 1.5.1