diff options
| author | dujinkim <dujin.kim@dtsolution.co.kr> | 2025-12-08 03:43:08 +0000 |
|---|---|---|
| committer | dujinkim <dujin.kim@dtsolution.co.kr> | 2025-12-08 03:43:08 +0000 |
| commit | e3593cf5c29dcae064b4b07b699e4ccf1cd90430 (patch) | |
| tree | ecc8488bc4d4830525d8add4a901bd87d4c2b72a /db/schema/techSales.ts | |
| parent | 198cbcf93b20d3849705dcdbba439326d82b0cae (diff) | |
(최겸) 기술영업 스키마 컬럼 추가
Diffstat (limited to 'db/schema/techSales.ts')
| -rw-r--r-- | db/schema/techSales.ts | 3 |
1 files changed, 3 insertions, 0 deletions
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 관계) |
