added sql syntax error

to not accidentally run the file
This commit is contained in:
Jonas_Jones 2025-01-20 00:21:34 +01:00
parent 53e9dd02fc
commit 057239f68f

View file

@ -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)