mascarpone/migrations/each_user/0005_address-tables.sql

7 lines
177 B
MySQL
Raw Normal View History

2025-11-27 13:45:21 -06:00
create table if not exists addresses (
id integer primary key,
contact_id integer not null references contacts(id) on delete cascade,
label text,
value text not null
);