diff options
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 }), |
