6 lines
111 B
MySQL
6 lines
111 B
MySQL
|
|
||
|
create table lists (
|
||
|
id serial primary key,
|
||
|
name text not null
|
||
|
);
|