From 08149dc5134ea813a97449f28f5a0e79c0d16598 Mon Sep 17 00:00:00 2001 From: Andreas Fruhwirt Date: Tue, 7 Oct 2025 13:27:39 +0200 Subject: [PATCH] pushed local stuff --- tables.sql | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 tables.sql diff --git a/tables.sql b/tables.sql new file mode 100644 index 0000000..d01f59f --- /dev/null +++ b/tables.sql @@ -0,0 +1,6 @@ +CREATE TABLE memory ( + id INTEGER PRIMARY KEY AUTOINCREMENT, + data BLOB NOT NULL, + create_date DATETIME DEFAULT CURRENT_TIMESTAMP, + last_accessed DATETIME DEFAULT CURRENT_TIMESTAMP +); \ No newline at end of file