fix data table

This commit is contained in:
natib21
2026-06-20 09:38:12 +00:00
parent abccdffc38
commit 963392edb3
4 changed files with 46 additions and 6 deletions

View File

@@ -56,4 +56,10 @@ export class Vehicle extends BaseEntity {
@Column({ type: 'text', nullable: true })
description?: string | null;
@Column({ name: 'assigned_driver_id', type: 'uuid', nullable: true })
assignedDriverId?: string;
@Column({ name: 'assigned_driver_name', nullable: true })
assignedDriverName?: string;
}