···11+create table list_mutes
22+(
33+ did text not null references actors (did),
44+ list_uri text not null,
55+ created_at timestamptz not null default now(),
66+77+ primary key (did, list_uri)
88+);
99+1010+create index listmutes_list_index on list_mutes using hash (list_uri);
1111+create index listmutes_did_index on list_mutes using hash (did);
1212+1313+create table mutes
1414+(
1515+ did text not null references actors (did),
1616+ subject text not null,
1717+ created_at timestamptz not null default now(),
1818+1919+ primary key (did, subject)
2020+);
2121+2222+create index mutes_subject_index on mutes (subject);