From f9a737faffc232f2ae634310da350ce1294d4241 Mon Sep 17 00:00:00 2001 From: Methapon2001 <61303214+Methapon2001@users.noreply.github.com> Date: Fri, 5 Apr 2024 16:43:59 +0700 Subject: [PATCH] feat: add gender field to database --- src/controllers/user-controller.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/controllers/user-controller.ts b/src/controllers/user-controller.ts index 1863c21..97c9b42 100644 --- a/src/controllers/user-controller.ts +++ b/src/controllers/user-controller.ts @@ -38,6 +38,7 @@ type UserCreate = { firstNameEN: string; lastName: string; lastNameEN: string; + gender: string; code?: string; registrationNo?: string; @@ -72,6 +73,7 @@ type UserUpdate = { firstNameEN?: string; lastName?: string; lastNameEN?: string; + gender?: string; code?: string; registrationNo?: string;