protocol absence

This commit is contained in:
Julian Krauser 2025-01-05 12:12:53 +01:00
parent 455589e2b5
commit 161a9dc51c
10 changed files with 86 additions and 23 deletions

View file

@ -10,6 +10,9 @@ export class protocolPresence {
@PrimaryColumn()
protocolId: number;
@Column({ type: "boolean", default: false })
absent: boolean;
@ManyToOne(() => member, {
nullable: false,
onDelete: "CASCADE",