add reporter to damage report

This commit is contained in:
Julian Krauser 2025-05-27 16:01:00 +02:00
parent d156cc6ad6
commit baa3b2cc8c
2 changed files with 4 additions and 0 deletions

View file

@ -20,6 +20,9 @@ export class damageReport {
@Column({ type: "text" })
description: string;
@Column({ type: "varchar", length: 255 })
reportedBy: string;
@Column({ nullable: true, default: null })
equipmentId: string;