fix: re-apply the owner schema when a user database is opened
Nightly Build / build (push) Successful in 7m49s

open_user_pool ran only the key probe, so ensure_column never reached
pre-existing {userid}.db files: users created before an additive column
(e.g. chat_sessions.is_open) was introduced hit 'no such column' at
their next login. create_owner_tables is idempotent, so running it at
unlock lands additive changes per user, at the only moment an encrypted
file is readable.
This commit is contained in:
2026-08-04 22:35:47 +01:00
parent 32d6dcc423
commit e5c0f53f75
+7
View File
@@ -158,9 +158,16 @@ pub async fn create_user_pool(path: &Path, key: Option<&Dek>) -> Result<SqlitePo
}
/// Opens an existing user database. Never creates one — see [`create_user_pool`].
///
/// Re-applies the owner schema on every open: `create_owner_tables` is
/// idempotent (`CREATE TABLE IF NOT EXISTS` + `ensure_column`), so an additive
/// column lands on a pre-existing database at the user's next unlock — the only
/// moment an encrypted file is readable. A failure here fails the open
/// (fail-closed).
pub async fn open_user_pool(path: &Path, key: Option<&Dek>) -> Result<SqlitePool> {
let pool = SqlitePool::connect_with(user_options(path, key, false)).await?;
probe(&pool).await?;
create_owner_tables(&pool).await?;
Ok(pool)
}