diff options
| author | dujinkim <dujin.kim@dtsolution.co.kr> | 2025-11-18 10:33:51 +0000 |
|---|---|---|
| committer | dujinkim <dujin.kim@dtsolution.co.kr> | 2025-11-18 10:33:51 +0000 |
| commit | be5d5ab488ae875e7c56306403aba923e1784021 (patch) | |
| tree | d43be7bf1204d6ba3862da24f7e2c2049d6c62fd /db/schema | |
| parent | 41ad2455ac47d8e2da331d7240ded1354df9a784 (diff) | |
(최겸) 기술영업 첨부파일 결재 등록 및 요구사항 개발
Diffstat (limited to 'db/schema')
| -rw-r--r-- | db/schema/techSales.ts | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/db/schema/techSales.ts b/db/schema/techSales.ts index c252a116..677e8cd3 100644 --- a/db/schema/techSales.ts +++ b/db/schema/techSales.ts @@ -48,7 +48,8 @@ import { techVendors, techVendorContacts, techVendorPossibleItems } from "./tech // 기술영업 RFQ 상태 export const TECH_SALES_RFQ_STATUSES = { RFQ_CREATED: "RFQ Created", - RFQ_VENDOR_ASSIGNED: "RFQ Vendor Assignned", + RFQ_VENDOR_ASSIGNED: "RFQ Vendor Assignned", + APPROVAL_IN_PROGRESS: "결재 진행중", RFQ_SENT: "RFQ Sent", QUOTATION_ANALYSIS: "Quotation Analysis", CLOSED: "Closed", @@ -208,6 +209,7 @@ export const techSalesAttachments = pgTable( fileSize: integer("file_size"), fileType: varchar("file_type", { length: 100 }), description: varchar("description", { length: 500 }), + drmEncrypted: boolean("drm_encrypted").default(false).notNull(), // DRM 암호화 여부 createdBy: integer("created_by") .references(() => users.id, { onDelete: "set null" }) .notNull(), |
