From 057239f68f85e5db1408eef85fcbff534ad0ecc4 Mon Sep 17 00:00:00 2001 From: Jonas_Jones Date: Mon, 20 Jan 2025 00:21:34 +0100 Subject: [PATCH] added sql syntax error to not accidentally run the file --- schema.sql | 1 + 1 file changed, 1 insertion(+) diff --git a/schema.sql b/schema.sql index 1e6d925..6687553 100644 --- a/schema.sql +++ b/schema.sql @@ -1,3 +1,4 @@ +DO NOT EXECUTE!!!! DROP TABLE IF EXISTS requests; CREATE TABLE IF NOT EXISTS requests (id INTEGER PRIMARY KEY AUTOINCREMENT, timestamp DATETIME, domain TEXT, method TEXT, path TEXT, country TEXT); INSERT INTO requests (timestamp, domain, method, path, country)