mascarpone/migrations/each_user/0011_phone_numbers.sql
Robert Perce 2e1fbd00be
Some checks failed
/ integration-test--firefox (push) Failing after 3m8s
basic phone number support
2026-01-31 21:01:01 -06:00

5 lines
162 B
SQL

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
);