github.com/jackc/pgx/v5@v5.5.5/examples/todo/structure.sql (about)

     1  create table tasks (
     2    id serial primary key,
     3    description text not null
     4  );