mascarpone/migrations/each_user/0007_contact-groups.sql

5 lines
131 B
MySQL
Raw Normal View History

2026-01-16 23:19:40 -06:00
create table if not exists groups (
2026-01-19 21:38:23 -06:00
contact_id integer not null references contacts(id) on delete cascade,
2026-01-16 23:19:40 -06:00
name text not null
);