summary refs log tree commit diff
path: root/util/src/entities/Sticker.ts
diff options
context:
space:
mode:
Diffstat (limited to 'util/src/entities/Sticker.ts')
-rw-r--r--util/src/entities/Sticker.ts8
1 files changed, 4 insertions, 4 deletions
diff --git a/util/src/entities/Sticker.ts b/util/src/entities/Sticker.ts

index 8956616e..036ff2d0 100644 --- a/util/src/entities/Sticker.ts +++ b/util/src/entities/Sticker.ts
@@ -36,9 +36,9 @@ export class Sticker extends BaseClass { }) guild?: Guild; - @Column() - type: number; + @Column({ type: "int" }) + type: StickerType; - @Column() - format_type: number; + @Column({ type: "int" }) + format_type: StickerFormatType; }