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