From 5e2aee9248a00c8b213a8e07e4796d668bff519c Mon Sep 17 00:00:00 2001 From: Joris Date: Fri, 7 Feb 2025 09:17:26 +0100 Subject: Apply SQL migrations at startup --- src/db/migrations/01-init.sql | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 src/db/migrations/01-init.sql (limited to 'src/db/migrations/01-init.sql') diff --git a/src/db/migrations/01-init.sql b/src/db/migrations/01-init.sql new file mode 100644 index 0000000..75abc54 --- /dev/null +++ b/src/db/migrations/01-init.sql @@ -0,0 +1,7 @@ +CREATE TABLE IF NOT EXISTS "files" ( + id TEXT PRIMARY KEY, + created_at TEXT NOT NULL, + expires_at TEXT NOT NULL, + filename TEXT NOT NULL, + content_length INTEGER NOT NULL +); -- cgit v1.2.3