docs(migration): update SQLite driver reference in migration guide

This commit is contained in:
2026-01-08 20:16:49 -05:00
parent 9bec58e293
commit e5230a6360

View File

@@ -61,7 +61,7 @@ This document outlines the SQL schema design for the Nebula wallet's **encrypted
### SQLite WASM + Encryption
1. **Encryption**: Database encrypted with key derived from WebAuthn PRF extension
2. **Pure Go Driver**: `modernc.org/sqlite` (WASM compatible, no CGO)
2. **Pure Go Driver**: `github.com/ncruces/go-sqlite3` (WASM compatible, no CGO)
3. **Minimal Schema**: Only security-critical data in enclave
4. **INTEGER PRIMARY KEY**: Auto-increment without AUTOINCREMENT overhead
5. **TEXT for binary**: Base64 encoded (BLOB performance poor in WASM)