From 213b995271edfbe7604d07ba4b71fcc20038a894 Mon Sep 17 00:00:00 2001 From: dujinkim Date: Mon, 17 Nov 2025 10:00:07 +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') diff --git a/db/schema/bidding.ts b/db/schema/bidding.ts index c8382ea6..2f0dd07f 100644 --- a/db/schema/bidding.ts +++ b/db/schema/bidding.ts @@ -163,6 +163,7 @@ export const biddings = pgTable('biddings', { // 계약 정보 contractType: contractTypeEnum('contract_type').notNull(), // 계약구분 + noticeType: varchar('notice_type', { length: 50 }).default('standard'), // 입찰공고 타입 biddingType: biddingTypeEnum('bidding_type').notNull(), // 입찰유형 awardCount: awardCountEnum('award_count').default('single'), // 낙찰수 // contractPeriod: varchar('contract_period', { length: 100 }), // 계약기간 @@ -592,6 +593,7 @@ export type Bidding = typeof biddings.$inferSelect & { bidPicName?: string | null supplyPicId?: number | null supplyPicName?: string | null + noticeType?: string | null } export type NewBidding = typeof biddings.$inferInsert -- cgit v1.2.3