From 86b1fd1cc801f45642f84d24c0b5c84368454ff0 Mon Sep 17 00:00:00 2001 From: dujinkim Date: Tue, 9 Sep 2025 10:34:05 +0000 Subject: (최겸) 구매 입찰 사전견적, 입찰, 낙찰, 유찰, 재입찰 기능 개발 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- db/schema/bidding.ts | 2 ++ 1 file changed, 2 insertions(+) (limited to 'db/schema/bidding.ts') diff --git a/db/schema/bidding.ts b/db/schema/bidding.ts index 40632607..c4913e7e 100644 --- a/db/schema/bidding.ts +++ b/db/schema/bidding.ts @@ -295,7 +295,9 @@ export const biddingCompanies = pgTable('bidding_companies', { // 사전견적 정보 preQuoteAmount: decimal('pre_quote_amount', { precision: 15, scale: 2 }), preQuoteSubmittedAt: timestamp('pre_quote_submitted_at'), + preQuoteDeadline: timestamp('pre_quote_deadline'), // 사전견적 마감일 isPreQuoteSelected: boolean('is_pre_quote_selected').default(false), // 본입찰 대상 선정 여부 + isPreQuoteParticipated: boolean('is_pre_quote_participated'), // 사전견적 참여 여부 // 본입찰 정보 isBiddingInvited: boolean('is_bidding_invited').default(false), // 본입찰 초대 여부 -- cgit v1.2.3