mascarpone/migrations/each_user/0007_contact-groups.sql
Robert Perce cd4096b2ff
Some checks failed
/ integration-test--firefox (push) Failing after 3m7s
refactor: demo.db migration structure
2026-01-19 21:38:23 -06:00

4 lines
131 B
SQL

create table if not exists groups (
contact_id integer not null references contacts(id) on delete cascade,
name text not null
);