diff options
Diffstat (limited to 'db/schema')
| -rw-r--r-- | db/schema/bidding.ts | 2 |
1 files changed, 2 insertions, 0 deletions
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), // 본입찰 초대 여부 |
