/
githubmirror
/
sqlc
Обзор
Документация
Войти
/
githubmirror
/
sqlc
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
examples/batch/postgresql/schema.sql
21 строка
656 B
Chris Lee
fix: batch imports filter queries, update cmds having ret type (#1842)
14 сен 2022, 06:51
Не верифицирован
14 сен 2022, 06:51
f61a5d5
Код
Авторство
О чём код?
CREATE TABLE authors ( author_id SERIAL PRIMARY KEY, name text NOT NULL DEFAULT '', biography JSONB ); CREATE TYPE book_type AS ENUM ( 'FICTION', 'NONFICTION' ); CREATE TABLE books ( book_id SERIAL PRIMARY KEY, author_id integer NOT NULL REFERENCES authors(author_id), isbn text NOT NULL DEFAULT '' UNIQUE, book_type book_type NOT NULL DEFAULT 'FICTION', title text NOT NULL DEFAULT '', year integer NOT NULL DEFAULT 2000, available timestamp with time zone NOT NULL DEFAULT 'NOW()', tags varchar[] NOT NULL DEFAULT '{}' );