···11-create table if not exists oauth_auth_requests (
22- state text not null primary key,
33- authserver_iss text not null,
44- did text,
55- handle text,
66- pds_url text,
77- pkce_verifier text not null,
88- scope text not null,
99- dpop_authserver_nonce text not null,
1010- dpop_private_jwk text not null
1111-) strict, without rowid;
1212-1313-create table if not exists oauth_sessions (
1414- did text not null primary key,
1515- handle text,
1616- pds_url text not null,
1717- authserver_iss text not null,
1818- access_token text,
1919- refresh_token text,
2020- dpop_authserver_nonce text not null,
2121- dpop_pds_nonce text,
2222- dpop_private_jwk text not null
2323-) strict, without rowid;
11+-- empty for now