First pass

This commit is contained in:
2025-12-25 22:10:06 -07:00
parent a2af6195f9
commit 455c3dbd9a
58 changed files with 10299 additions and 3 deletions

4
check_db.js Normal file
View File

@@ -0,0 +1,4 @@
import Database from 'better-sqlite3';
const db = new Database('zamaan.db');
const tables = db.prepare("SELECT name FROM sqlite_master WHERE type='table'").all();
console.log('Tables:', tables);