From e5230a6360e017c0bb3ac1b5be91662d9fbcc28c Mon Sep 17 00:00:00 2001 From: Prad Nukala Date: Thu, 8 Jan 2026 20:16:49 -0500 Subject: [PATCH] docs(migration): update SQLite driver reference in migration guide --- MIGRATION.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/MIGRATION.md b/MIGRATION.md index 23dce5e..b60a63b 100644 --- a/MIGRATION.md +++ b/MIGRATION.md @@ -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)