summary refs log tree commit diff
path: root/src/util/entities/Channel.ts
diff options
context:
space:
mode:
authorMadeline <46743919+MaddyUnderStars@users.noreply.github.com>2023-09-02 02:21:42 +1000
committerMadeline <46743919+MaddyUnderStars@users.noreply.github.com>2023-09-02 02:21:42 +1000
commit2f48212e6e6813f90eb13cf8ed79e0ebb3440b31 (patch)
tree792587a7f3dee4ef09973b21460e12d238d9b792 /src/util/entities/Channel.ts
parentMerge branch 'master' of github.com:spacebarchat/server (diff)
downloadserver-2f48212e6e6813f90eb13cf8ed79e0ebb3440b31.tar.xz
typeorm inverse relations of guild relations
Diffstat (limited to 'src/util/entities/Channel.ts')
-rw-r--r--src/util/entities/Channel.ts5
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)