diff options
| author | joonhoekim <26rote@gmail.com> | 2025-11-19 17:44:48 +0900 |
|---|---|---|
| committer | joonhoekim <26rote@gmail.com> | 2025-11-19 17:44:48 +0900 |
| commit | 60382940bac4ac8309be64be16f4774b6820df22 (patch) | |
| tree | 976909a239b0712de59131ee10055735568447fc /db/schema/bidding.ts | |
| parent | ec74a7862eb33a9da1e3d6ba2877d5b9662dbfca (diff) | |
(김준회) PR 데이터 수신시 Spec 정보도 넣어주도록 수정
Diffstat (limited to 'db/schema/bidding.ts')
| -rw-r--r-- | db/schema/bidding.ts | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/db/schema/bidding.ts b/db/schema/bidding.ts index 1d1fe50a..8f9f8d84 100644 --- a/db/schema/bidding.ts +++ b/db/schema/bidding.ts @@ -336,6 +336,7 @@ export const prItemsForBidding = pgTable('pr_items_for_bidding', { // SPEC 파일 정보 hasSpecDocument: boolean('has_spec_document').default(false), + specification: varchar('specification', { length: 2000 }), // Specification createdAt: timestamp('created_at').defaultNow().notNull(), updatedAt: timestamp('updated_at').defaultNow().notNull(), |
