diff --git a/src/entity/hrms/hrms_training.ts b/src/entity/hrms/hrms_training.ts index 21b2c10..34f7438 100644 --- a/src/entity/hrms/hrms_training.ts +++ b/src/entity/hrms/hrms_training.ts @@ -37,11 +37,23 @@ export class HrmsTraining { }) start_at: Date; + @Column({ + nullable: true, + length: 8, + }) + start_time: string; + @Column({ nullable: false, }) end_at: Date; + @Column({ + nullable: true, + length: 8, + }) + end_time: string; + @Column({ nullable: false, length: 64,