From 4b88dfde4b87e3c4c18d457b59d03e4b73372548 Mon Sep 17 00:00:00 2001 From: itsscb Date: Sat, 3 May 2025 22:25:35 +0200 Subject: [PATCH] feat: add sql migrations --- migrations/20250503193112_init.sql | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 migrations/20250503193112_init.sql diff --git a/migrations/20250503193112_init.sql b/migrations/20250503193112_init.sql new file mode 100644 index 0000000..afe3423 --- /dev/null +++ b/migrations/20250503193112_init.sql @@ -0,0 +1,5 @@ +CREATE TABLE IF NOT EXISTS scripts ( + id TEXT PRIMARY KEY, + name TEXT NOT NULL, + path TEXT NOT NULL +)