mascarpone/migrations/each_user/0011_phone_numbers.sql

6 lines
162 B
MySQL
Raw Permalink Normal View History

2026-01-31 21:01:01 -06:00
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
);