···1+create table list_mutes
2+(
3+ did text not null references actors (did),
4+ list_uri text not null,
5+ created_at timestamptz not null default now(),
6+7+ primary key (did, list_uri)
8+);
9+10+create index listmutes_list_index on list_mutes using hash (list_uri);
11+create index listmutes_did_index on list_mutes using hash (did);
12+13+create table mutes
14+(
15+ did text not null references actors (did),
16+ subject text not null,
17+ created_at timestamptz not null default now(),
18+19+ primary key (did, subject)
20+);
21+22+create index mutes_subject_index on mutes (subject);