start changes to make into an importable library

This commit is contained in:
2024-08-21 23:38:18 -06:00
parent 74c70e6723
commit cdc8fc4e5e
7 changed files with 235 additions and 121 deletions

View File

@ -0,0 +1,7 @@
CREATE TABLE eventlog (
eventid TEXT PRIMARY KEY,
name TEXT NOT NULL,
body BLOB,
metadata BLOB,
createdat TIMESTAMP DEFAULT CURRENT_TIMESTAMP
);