refactor: demo.db migration structure
Some checks failed
/ integration-test--firefox (push) Failing after 3m7s

This commit is contained in:
Robert Perce 2026-01-19 21:38:23 -06:00
parent 1f05189ec6
commit cd4096b2ff
9 changed files with 26 additions and 46 deletions

View file

@ -1,4 +1,4 @@
create table if not exists groups (
contact_id number not null references contacts(id),
contact_id integer not null references contacts(id) on delete cascade,
name text not null
);