forked from MergeFi/backend
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathteam.entity.ts
More file actions
37 lines (30 loc) · 750 Bytes
/
Copy pathteam.entity.ts
File metadata and controls
37 lines (30 loc) · 750 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
import {
Column,
CreateDateColumn,
Entity,
JoinColumn,
ManyToOne,
OneToMany,
PrimaryGeneratedColumn,
UpdateDateColumn,
} from 'typeorm';
import { User } from './user.entity';
import { TeamMemberSplit } from './team-member-split.entity';
@Entity('teams')
export class Team {
@PrimaryGeneratedColumn('uuid')
id: string;
@Column()
name: string;
@ManyToOne(() => User, { onDelete: 'SET NULL', nullable: true })
@JoinColumn()
createdBy: User | null;
@Column({ type: 'varchar', nullable: true })
createdById: string | null;
@OneToMany(() => TeamMemberSplit, (split) => split.team, { cascade: true })
splits: TeamMemberSplit[];
@CreateDateColumn()
createdAt: Date;
@UpdateDateColumn()
updatedAt: Date;
}