Saving original filename to database for optional post-tagging

This commit is contained in:
2026-05-13 06:23:58 +02:00
parent 155fa58d8a
commit 0b5b68dc85
3 changed files with 18 additions and 4 deletions

View File

@@ -844,7 +844,8 @@ CREATE TABLE public.items (
has_coverart boolean DEFAULT false,
is_pinned boolean DEFAULT false,
is_oc boolean DEFAULT false,
xd_score integer DEFAULT 0 NOT NULL
xd_score integer DEFAULT 0 NOT NULL,
original_filename text
);