refactor into an importable library and keep an example

This commit is contained in:
2024-08-22 00:05:50 -06:00
parent cdc8fc4e5e
commit cfd22dfc9c
6 changed files with 18 additions and 8 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
);