diff options
| author | dujinkim <dujin.kim@dtsolution.co.kr> | 2025-11-17 10:00:07 +0000 |
|---|---|---|
| committer | dujinkim <dujin.kim@dtsolution.co.kr> | 2025-11-17 10:00:07 +0000 |
| commit | 213b995271edfbe7604d07ba4b71fcc20038a894 (patch) | |
| tree | 41540fafa74d18755bccd00d4368e5652d8f6092 /db/schema | |
| parent | f1676f41e6edadd5841bff6a097dc93fbd195b92 (diff) | |
(최겸) 구매 입찰 수정
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 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 |
