This commit is contained in:
2026-07-10 19:01:33 +09:00
parent e3d66e717c
commit b98affbf99
22 changed files with 1681 additions and 752 deletions
@@ -206,10 +206,10 @@ async def list_project_point_cloud_inputs(
await cursor.execute(
"""
SELECT id, file_type, original_filename, raw_file_path, file_size_mb,
crs_epsg, status, created_at
crs_epsg, status, upload_at
FROM input_files
WHERE project_id = %s AND file_type IN ('las', 'laz')
ORDER BY created_at DESC, id DESC
ORDER BY upload_at DESC, id DESC
""",
(str(project_id),),
)