diff options
author | Madeline <46743919+MaddyUnderStars@users.noreply.github.com> | 2022-08-30 15:13:18 +1000 |
---|---|---|
committer | Madeline <46743919+MaddyUnderStars@users.noreply.github.com> | 2022-08-30 15:13:18 +1000 |
commit | c2931f61aa0adb682ab023d85ba599099024d62b (patch) | |
tree | 86de9071cbded565fe9e082bd2cc6c611a926c6c /src/util/entities/Team.ts | |
parent | Guild join messages (diff) | |
parent | Oop, deprecated typeorm call (diff) | |
download | server-c2931f61aa0adb682ab023d85ba599099024d62b.tar.xz |
Merge branch 'staging' into dev/Maddy/feat/welcomeMessages
Diffstat (limited to 'src/util/entities/Team.ts')
-rw-r--r-- | src/util/entities/Team.ts | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/src/util/entities/Team.ts b/src/util/entities/Team.ts new file mode 100644 index 00000000..1d2d7002 --- /dev/null +++ b/src/util/entities/Team.ts @@ -0,0 +1,27 @@ +import { Column, Entity, JoinColumn, ManyToOne, OneToMany, RelationId } from "typeorm"; +import { BaseClass } from "./BaseClass"; +import { TeamMember } from "./TeamMember"; +import { User } from "./User"; + +@Entity("teams") +export class Team extends BaseClass { + @Column({ nullable: true }) + icon?: string; + + @JoinColumn({ name: "member_ids" }) + @OneToMany(() => TeamMember, (member: TeamMember) => member.team, { + orphanedRowAction: "delete" + }) + members: TeamMember[]; + + @Column() + name: string; + + @Column({ nullable: true }) + @RelationId((team: Team) => team.owner_user) + owner_user_id: string; + + @JoinColumn({ name: "owner_user_id" }) + @ManyToOne(() => User) + owner_user: User; +} |