···11+create table if not exists oauth_session (
22+ did text not null primary key,
33+ handle text,
44+ pds_url text not null,
55+ authserver_iss text not null,
66+ access_token text,
77+ refresh_token text,
88+ dpop_authserver_nonce text not null,
99+ dpop_pds_nonce text,
1010+ dpop_private_jwk text not null
1111+) strict, without rowid;