···43 create table if not exists follows (
44 user_did text not null,
45 subject_did text not null,
046 followed_at text not null default (strftime('%Y-%m-%dT%H:%M:%SZ', 'now')),
47 primary key (user_did, subject_did),
48 check (user_did <> subject_did)
···43 create table if not exists follows (
44 user_did text not null,
45 subject_did text not null,
46+ at_uri text not null,
47 followed_at text not null default (strftime('%Y-%m-%dT%H:%M:%SZ', 'now')),
48 primary key (user_did, subject_did),
49 check (user_did <> subject_did)