pushed local stuff

This commit is contained in:
Andreas Fruhwirt 2025-10-07 13:27:39 +02:00
parent 27c5ca29cc
commit 08149dc513

6
tables.sql Normal file
View File

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