store mime_type for each file

This commit is contained in:
2024-03-11 20:10:15 -06:00
parent 27d0935290
commit 119429bdea
2 changed files with 3 additions and 1 deletions

View File

@@ -7,6 +7,7 @@ CREATE TABLE image (
local_file TEXT NOT NULL,
size INTEGER NOT NULL,
final_file TEXT NOT NULL,
mime_type TEXT NOT NULL,
url TEXT NOT NULL
);