From e70f524d5fff151df81d8f373f17f7552e4dfc23 Mon Sep 17 00:00:00 2001 From: Talmaj Marinc Date: Tue, 30 Jun 2026 09:48:38 +0200 Subject: [PATCH] Simplify docstrings. --- app/model_downloader/database/models.py | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/app/model_downloader/database/models.py b/app/model_downloader/database/models.py index cc2afda58..a7a8fde88 100644 --- a/app/model_downloader/database/models.py +++ b/app/model_downloader/database/models.py @@ -1,15 +1,13 @@ """SQLAlchemy models for the download manager. -Three tables (PRD section 7): +Three tables: - ``downloads`` one row per requested file (job + queue state). - ``download_segments`` per-segment byte progress, for segmented resume. - ``host_credentials`` one API key per host, reused across downloads. -The local file catalog / dedup index is NOT here — that is owned by the -assets system (``assets`` / ``asset_references``). On completion a finished -file is registered into the assets catalog; ``downloads`` is kept only as -job history. +On completion a finished file is registered into the assets catalog; +``downloads`` is kept only as job history. """ from __future__ import annotations