diff options
author | Madeline <46743919+MaddyUnderStars@users.noreply.github.com> | 2023-09-02 02:21:42 +1000 |
---|---|---|
committer | Madeline <46743919+MaddyUnderStars@users.noreply.github.com> | 2023-09-02 02:21:42 +1000 |
commit | 2f48212e6e6813f90eb13cf8ed79e0ebb3440b31 (patch) | |
tree | 792587a7f3dee4ef09973b21460e12d238d9b792 /src/util/entities/Channel.ts | |
parent | Merge branch 'master' of github.com:spacebarchat/server (diff) | |
download | server-2f48212e6e6813f90eb13cf8ed79e0ebb3440b31.tar.xz |
typeorm inverse relations of guild relations
Diffstat (limited to 'src/util/entities/Channel.ts')
-rw-r--r-- | src/util/entities/Channel.ts | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/util/entities/Channel.ts b/src/util/entities/Channel.ts index 6268d735..9f7041d4 100644 --- a/src/util/entities/Channel.ts +++ b/src/util/entities/Channel.ts @@ -97,10 +97,11 @@ export class Channel extends BaseClass { guild_id?: string; @JoinColumn({ name: "guild_id" }) - @ManyToOne(() => Guild, { + @ManyToOne(() => Guild, (guild) => guild.channels, { onDelete: "CASCADE", + nullable: true, }) - guild: Guild; + guild?: Guild; @Column({ nullable: true }) @RelationId((channel: Channel) => channel.parent) |