feat(session): optimize SQLite persistence layout

This commit is contained in:
Magolor
2026-08-19 18:36:27 +08:00
committed by chenzui
parent 1a5e038fb9
commit 93b4b98ef3
92 changed files with 3616 additions and 1537 deletions
@@ -0,0 +1,4 @@
SELECT type, name, tbl_name, sql
FROM sqlite_schema
WHERE name NOT GLOB 'sqlite_*'
ORDER BY type, name;