5 lines
162 B
SQL
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
|
|
);
|