thumbnail 테이블의 created_at 컬럼의 이름을 updated_at으로 변경

This commit is contained in:
static
2025-07-05 05:54:55 +09:00
parent 36d082e0f8
commit c236242136
6 changed files with 13 additions and 9 deletions

View File

@@ -92,7 +92,7 @@ export const getFileThumbnailInformation = async (userId: number, fileId: number
error(404, "File or its thumbnail not found");
}
return { encContentIv: thumbnail.encContentIv };
return { updatedAt: thumbnail.updatedAt, encContentIv: thumbnail.encContentIv };
};
export const getFileThumbnailStream = async (userId: number, fileId: number) => {