From 385131ce298b409544b9f3865a097dfcb14a6c6a Mon Sep 17 00:00:00 2001 From: "fazri.is" Date: Fri, 2 Jan 2026 03:24:58 +0700 Subject: [PATCH] update --- src/entity/hrms/hrms_training.ts | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/src/entity/hrms/hrms_training.ts b/src/entity/hrms/hrms_training.ts index 9cc291f..4cc2653 100644 --- a/src/entity/hrms/hrms_training.ts +++ b/src/entity/hrms/hrms_training.ts @@ -13,12 +13,24 @@ export class HrmsTraining { }) name: string; + @Column({ + nullable: false, + length: 256, + }) + code: string; + @Column({ nullable: false, length: 4096, }) description: string; + @Column({ + nullable: false, + length: 256, + }) + location: string; + @Column({ nullable: false, })