···1-create table if not exists oauth_auth_requests (
2- state text not null primary key,
3- authserver_iss text not null,
4- did text,
5- handle text,
6- pds_url text,
7- pkce_verifier text not null,
8- scope text not null,
9- dpop_authserver_nonce text not null,
10- dpop_private_jwk text not null
11-) strict, without rowid;
12-13-create table if not exists oauth_sessions (
14- did text not null primary key,
15- handle text,
16- pds_url text not null,
17- authserver_iss text not null,
18- access_token text,
19- refresh_token text,
20- dpop_authserver_nonce text not null,
21- dpop_pds_nonce text,
22- dpop_private_jwk text not null
23-) strict, without rowid;