diff options
author | Flam3rboy <34555296+Flam3rboy@users.noreply.github.com> | 2021-09-20 20:22:56 +0200 |
---|---|---|
committer | Flam3rboy <34555296+Flam3rboy@users.noreply.github.com> | 2021-09-20 20:22:56 +0200 |
commit | 576cbf5794b2e146892d7080b699882c2ba6ec6a (patch) | |
tree | ba0ee566a013053d90272126f2f5461ad6b1e30b /util/src/entities/Sticker.ts | |
parent | :sparkles: finish and fix .delete() for one-to-many relations (diff) | |
download | server-576cbf5794b2e146892d7080b699882c2ba6ec6a.tar.xz |
:bug: fix .delete -> add onDelete: "CASCADE"
Diffstat (limited to 'util/src/entities/Sticker.ts')
-rw-r--r-- | util/src/entities/Sticker.ts | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/util/src/entities/Sticker.ts b/util/src/entities/Sticker.ts index 7730a86a..ab224d1d 100644 --- a/util/src/entities/Sticker.ts +++ b/util/src/entities/Sticker.ts @@ -31,7 +31,9 @@ export class Sticker extends BaseClass { guild_id?: string; @JoinColumn({ name: "guild_id" }) - @ManyToOne(() => Guild) + @ManyToOne(() => Guild, { + onDelete: "CASCADE", + }) guild?: Guild; @Column({ type: "simple-enum", enum: StickerType }) |