···199199 unique(starred_by_did, repo_at)
200200 );
201201202202+ create table if not exists reactions (
203203+ id integer primary key autoincrement,
204204+ reacted_by_did text not null,
205205+ thread_at text not null,
206206+ kind text not null,
207207+ rkey text not null,
208208+ created text not null default (strftime('%Y-%m-%dT%H:%M:%SZ', 'now')),
209209+ unique(reacted_by_did, thread_at, kind)
210210+ );
211211+202212 create table if not exists emails (
203213 id integer primary key autoincrement,
204214 did text not null,