diff options
author | unknownPerson115 <69736850+unknownPerson115@users.noreply.github.com> | 2021-12-23 20:40:13 -0600 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-12-23 20:40:13 -0600 |
commit | 716ea8b233b9a2d958da403ce546540e789d1482 (patch) | |
tree | dbc233dee03caa7c0043a1d31924cb9535bb350f | |
parent | Fix people not being able to create issues (diff) | |
download | server-716ea8b233b9a2d958da403ce546540e789d1482.tar.xz |
Fixed potential guild message SQL constraints
i have tied member dependencies to the author id rather than the member id to avoid a dependency cycle and you can now kick/ban someone from a guild/server and the messages will remain in the guild (just like discord) as stated in issue #441 I have also tested this code seems clean so far (new pull request opened because of branch commit issues)
-rw-r--r-- | util/src/entities/Message.ts | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/util/src/entities/Message.ts b/util/src/entities/Message.ts index 20a44ca3..e577d5df 100644 --- a/util/src/entities/Message.ts +++ b/util/src/entities/Message.ts @@ -84,8 +84,10 @@ export class Message extends BaseClass { @RelationId((message: Message) => message.member) member_id: string; - @JoinColumn({ name: "member_id" }) - @ManyToOne(() => Member) + @JoinColumn({ name: "author_id", referencedColumnName: "id" }) + @ManyToOne(() => User, { + onDelete: "CASCADE", + }) member?: Member; @Column({ nullable: true }) |