From 36dc1293f9dcbf64908424e7e02a9e4e4c21ad43 Mon Sep 17 00:00:00 2001 From: Julien Calixte Date: Mon, 20 Apr 2026 10:56:03 +0200 Subject: [PATCH] docs: fix ATProto session storage split between SecureStore and SQLite --- .../specs/2026-04-20-react-native-migration-design.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/superpowers/specs/2026-04-20-react-native-migration-design.md b/docs/superpowers/specs/2026-04-20-react-native-migration-design.md index fcde1e6..a9be6b5 100644 --- a/docs/superpowers/specs/2026-04-20-react-native-migration-design.md +++ b/docs/superpowers/specs/2026-04-20-react-native-migration-design.md @@ -74,8 +74,8 @@ CREATE TABLE IF NOT EXISTS github_tokens ( CREATE TABLE IF NOT EXISTS atproto_sessions ( id TEXT PRIMARY KEY, - did TEXT NOT NULL, - session_json TEXT NOT NULL + did TEXT NOT NULL + -- full session_json stored in Expo SecureStore keyed by id ); CREATE TABLE IF NOT EXISTS saved_repos (