File: structure.sql

package info (click to toggle)
golang-github-jackc-pgx 4.18.3-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 744 kB
  • sloc: sh: 44; makefile: 9; sql: 8
file content (4 lines) | stat: -rw-r--r-- 77 bytes parent folder | download | duplicates (7)
1
2
3
4
create table tasks (
  id serial primary key,
  description text not null
);