diff options
| author | dujinkim <dujin.kim@dtsolution.co.kr> | 2025-07-09 12:19:05 +0000 |
|---|---|---|
| committer | dujinkim <dujin.kim@dtsolution.co.kr> | 2025-07-09 12:19:05 +0000 |
| commit | 6d654b1ba2c19e0bf1745b636908e3b00a0f02c7 (patch) | |
| tree | f6d48c0d3a65b428a828acea5db65db8e7bf0db8 /db/schema/ocr.ts | |
| parent | 44794a8628997c0d979adb5bd6711cd848b3e397 (diff) | |
(대표님) 20250709 변경사항 (약 18시 30분까지)
Diffstat (limited to 'db/schema/ocr.ts')
| -rw-r--r-- | db/schema/ocr.ts | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/db/schema/ocr.ts b/db/schema/ocr.ts index 12382aa4..f45fb523 100644 --- a/db/schema/ocr.ts +++ b/db/schema/ocr.ts @@ -49,6 +49,8 @@ export const ocrRows = pgTable('ocr_rows', { sessionId: uuid('session_id').notNull().references(() => ocrSessions.id, { onDelete: 'cascade' }), rowIndex: integer('row_index').notNull(), // 테이블 내에서 행 순서 reportNo: varchar('report_no', { length: 100 }), // Report No. (예: SN2661FT20250526) + fileName: varchar('file_name', { length: 255 }), + inspectionDate: varchar('inspection_date', { length: 255 }), no: varchar('no', { length: 50 }), identificationNo: varchar('identification_no', { length: 100 }), tagNo: varchar('tag_no', { length: 100 }), |
