···9292 primary key (user_did, subject_did),
9393 check (user_did <> subject_did)
9494 );
9595+ create table if not exists vouches (
9696+ did text not null,
9797+ subject_did text not null,
9898+ cid text not null,
9999+ kind text not null default 'vouch',
100100+ reason text,
101101+ created_at text not null default (strftime('%Y-%m-%dT%H:%M:%SZ', 'now')),
102102+ primary key (did, subject_did),
103103+ check (did <> subject_did),
104104+ check (kind in ('vouch', 'denounce'))
105105+ );
95106 create table if not exists issues (
96107 id integer primary key autoincrement,
97108 owner_did text not null,