added downloaded_at timestamp to icon table

This commit is contained in:
Joe Lothan 2026-05-20 01:35:13 -04:00
parent ec33b2e857
commit 564919c5cc
2 changed files with 4 additions and 2 deletions

View file

@ -30,7 +30,8 @@ CREATE TABLE IF NOT EXISTS icons (
file_size INT,
s3_key TEXT,
scan_state TEXT DEFAULT 'unscanned',
error TEXT
error TEXT,
downloaded_at TIMESTAMPTZ
);
-- Partial index: only unscanned icons (shrinks as work completes)