From 8a0096dff6f16015ee12c8b25a6b8471733b6529 Mon Sep 17 00:00:00 2001 From: dujinkim Date: Fri, 17 Oct 2025 07:16:43 +0000 Subject: (김준회) 조달담당자 선택기 구현 및 users 테이블에 조달담당자 컬럼 추가 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- db/schema/users.ts | 2 ++ 1 file changed, 2 insertions(+) (limited to 'db/schema') diff --git a/db/schema/users.ts b/db/schema/users.ts index 278bc7ab..c67f6cc3 100644 --- a/db/schema/users.ts +++ b/db/schema/users.ts @@ -72,6 +72,8 @@ export const users = pgTable("users", { // 사용자 코드 (구매그룹코드) userCode: varchar("user_code", { length: 50 }), + // 조달담당자 코드 (MMK010) + procurementManagerCode: varchar("procurement_manager_code", { length: 50 }), }, (table) => { return { -- cgit v1.2.3