basic phone number support
Some checks failed
/ integration-test--firefox (push) Failing after 3m8s

This commit is contained in:
Robert Perce 2026-01-31 21:01:01 -06:00
parent 84c41dda4d
commit 2e1fbd00be
3 changed files with 90 additions and 2 deletions

View file

@ -0,0 +1,5 @@
create table if not exists phone_numbers (
contact_id integer not null references contacts(id) on delete cascade,
label text,
phone_number text not null
);