···601601 name text unique
602602 );
603603604604+ create table if not exists punchcard_preferences (
605605+ id integer primary key autoincrement,
606606+ user_did text not null unique,
607607+ hide_mine integer default 0,
608608+ hide_others integer default 0
609609+ );
610610+604611 -- indexes for better performance
605612 create index if not exists idx_notifications_recipient_created on notifications(recipient_did, created desc);
606613 create index if not exists idx_notifications_recipient_read on notifications(recipient_did, read);