From e3593cf5c29dcae064b4b07b699e4ccf1cd90430 Mon Sep 17 00:00:00 2001 From: dujinkim Date: Mon, 8 Dec 2025 03:43:08 +0000 Subject: (최겸) 기술영업 스키마 컬럼 추가 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- db/schema/techSales.ts | 3 +++ 1 file changed, 3 insertions(+) (limited to 'db/schema/techSales.ts') diff --git a/db/schema/techSales.ts b/db/schema/techSales.ts index 677e8cd3..c1068434 100644 --- a/db/schema/techSales.ts +++ b/db/schema/techSales.ts @@ -165,6 +165,9 @@ export const techSalesRfqs = pgTable("tech_sales_rfqs", { .$type<"SHIP" | "TOP" | "HULL">() .default("SHIP") .notNull(), + + // 벤더에게 프로젝트명/선주명 노출 여부 + hideProjectInfoForVendors: boolean("hide_project_info_for_vendors").default(false).notNull(), }); // 기술영업 RFQ 아이템 테이블 (1:N 관계) -- cgit v1.2.3