summary refs log tree commit diff
path: root/util/src/entities/Sticker.ts
diff options
context:
space:
mode:
authorFlam3rboy <34555296+Flam3rboy@users.noreply.github.com>2021-10-11 15:06:00 +0200
committerGitHub <noreply@github.com>2021-10-11 15:06:00 +0200
commit3aa8470eef01912fdf5b7128116904d95a9b05cb (patch)
tree1d210cb04b197efcd39aa79f670551eec84a1a48 /util/src/entities/Sticker.ts
parentMerge pull request #437 from erkinalp/patch-4 (diff)
parentPut local types back (diff)
downloadserver-ts-3aa8470eef01912fdf5b7128116904d95a9b05cb.tar.xz
Merge pull request #435 from TheArcaneBrony/change-enums-to-number
Change enums to numbers
Diffstat (limited to 'util/src/entities/Sticker.ts')
-rw-r--r--util/src/entities/Sticker.ts4
1 files changed, 2 insertions, 2 deletions
diff --git a/util/src/entities/Sticker.ts b/util/src/entities/Sticker.ts

index ab224d1d..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: "simple-enum", enum: StickerType }) + @Column({ type: "int" }) type: StickerType; - @Column({ type: "simple-enum", enum: StickerFormatType }) + @Column({ type: "int" }) format_type: StickerFormatType; }