···5959 create table if not exists follows (
6060 user_did text not null,
6161 subject_did text not null,
6262- at_uri text not null,
6262+ rkey text not null,
6363 followed_at text not null default (strftime('%Y-%m-%dT%H:%M:%SZ', 'now')),
6464 primary key (user_did, subject_did),
6565 check (user_did <> subject_did)