diff options
Diffstat (limited to 'db')
| -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 |
