fix(B03): upload-overview 컬럼명 upload_at으로 수정 (input_files 스키마 정합)

서버 테스트에서 발견 — input_files에는 created_at이 없고 upload_at이다.
upload-overview 응답·Repository 조회 컬럼을 스키마에 맞춤.

Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com>
This commit is contained in:
2026-08-04 18:20:21 +09:00
co-authored by Claude Opus 5
parent e2f6a101b6
commit ded617129e
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -304,7 +304,7 @@ async def list_project_input_files(
await cursor.execute(
"""
SELECT f.id, f.file_type, f.original_filename, f.file_size_mb, f.status,
f.created_at
f.upload_at
FROM input_files f
INNER JOIN (
SELECT MAX(id) AS id