diff options
| author | dujinkim <dujin.kim@dtsolution.co.kr> | 2025-08-04 09:40:21 +0000 |
|---|---|---|
| committer | dujinkim <dujin.kim@dtsolution.co.kr> | 2025-08-04 09:40:21 +0000 |
| commit | 459873f983cf1468f778109df4c7953c5d40743d (patch) | |
| tree | 63393cf8fa24a4c76219a250893eb2cbcf0aabb7 /db | |
| parent | 53ad72732f781e6c6d5ddb3776ea47aec010af8e (diff) | |
(최겸) 기술영업 요구사항 반영
Diffstat (limited to 'db')
| -rw-r--r-- | db/schema/techSales.ts | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/db/schema/techSales.ts b/db/schema/techSales.ts index 09b32500..c252a116 100644 --- a/db/schema/techSales.ts +++ b/db/schema/techSales.ts @@ -238,6 +238,14 @@ export const techSalesVendorQuotations = pgTable( // === [끝] 견적 응답 정보 === + // 벤더 구분자 정보 (JSON 형태로 저장) + vendorFlags: json("vendor_flags").$type<{ + isCustomerPreferred?: boolean; // 고객(선주) 선호 벤더 + isNewDiscovery?: boolean; // 신규 발굴 벤더 + isProjectApproved?: boolean; // Project Approved Vendor + isShiProposal?: boolean; // SHI Proposal Vendor + }>(), + // 상태 관리 status: varchar("status", { length: 30 }) .$type<TechSalesQuotationStatus>() |
