Skip to main content
Makenot
.
work
Discover
Use Cases
Docs
Fan+
Login
Join
max
/
goingson
main
tag: launch-2026-06-01
Files
Commits
Issues
goingson
/
migrations
/
sqlite
/
048_implicit_contacts.sql
337 B · 6 lines
History
Blame
Raw
1
--
Implicit contacts: auto-created when sending to a new address.
2
--
Not shown in the contacts UI; appear in autocomplete only.
3
--
Promoted to explicit (is_implicit = 0) when user saves them.
4
ALTER
TABLE
contacts ADD COLUMN is_implicit
INTEGER
NOT NULL
DEFAULT
0
;
5
CREATE
INDEX
idx_contacts_is_implicit
ON
contacts(user_id, is_implicit);
6