···4343 create table if not exists follows (
4444 user_did text not null,
4545 subject_did text not null,
4646+ at_uri text not null,
4647 followed_at text not null default (strftime('%Y-%m-%dT%H:%M:%SZ', 'now')),
4748 primary key (user_did, subject_did),
4849 check (user_did <> subject_did)