summary refs log tree commit diff
path: root/src/schema/Emoji.ts
diff options
context:
space:
mode:
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; }