This commit is contained in:
wayanrivan
2026-03-09 10:57:59 +07:00
parent 22bacf8e01
commit 28d96a41eb

View File

@ -27,6 +27,18 @@ export class Room {
})
description: string;
@Column({
type: 'text',
nullable: true,
})
picture: string;
@Column({
type: 'text',
nullable: true,
})
location: string;
@ManyToOne(() => Department, { onDelete: "NO ACTION", nullable: true })
@JoinColumn()
department: Department;