File: structure.sql

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