add DB to record each image upload

This commit is contained in:
2024-03-02 19:18:54 -07:00
parent 0d7020daf7
commit 5b21723273
7 changed files with 1389 additions and 5 deletions

View File

@@ -0,0 +1,8 @@
CREATE TABLE image (
date TEXT NOT NULL,
did TEXT NOT NULL,
local_file TEXT NOT NULL,
size INTEGER NOT NULL,
aws_file TEXT NOT NULL,
url TEXT NOT NULL
);