mirror of
https://github.com/jackc/pgx.git
synced 2025-04-27 13:14:32 +00:00
5 lines
77 B
SQL
5 lines
77 B
SQL
create table tasks (
|
|
id serial primary key,
|
|
description text not null
|
|
);
|