vaguely working upload/download implementation

This commit is contained in:
2022-01-16 22:31:20 -08:00
commit 00f4dce4f9
11 changed files with 1707 additions and 0 deletions

View File

@ -0,0 +1 @@
DROP TABLE uploads;

View File

@ -0,0 +1,5 @@
CREATE TABLE uploads (
id TEXT PRIMARY KEY NOT NULL,
name TEXT,
created_at INTEGER
);