5 lines
112 B
MySQL
5 lines
112 B
MySQL
|
|
create table if not exists groups (
|
||
|
|
contact_id number not null references contacts(id),
|
||
|
|
name text not null
|
||
|
|
);
|