5 lines
77 B
SQL
5 lines
77 B
SQL
create table tasks (
|
|
id serial primary key,
|
|
description text not null
|
|
);
|