Reorganize repo into cargo workspace

This commit is contained in:
2024-12-14 15:37:35 -05:00
parent cc5af850ce
commit 33094f897d
54 changed files with 3164 additions and 91 deletions
@@ -0,0 +1,10 @@
CREATE TABLE IF NOT EXISTS pages (
slug STRING PRIMARY KEY UNIQUE NOT NULL,
content STRING NOT NULL
);
CREATE TABLE IF NOT EXISTS sessions (
id INTEGER PRIMARY KEY NOT NULL,
user STRING NOT NULL,
expires TEXT
);