/
githubmirror
/
sqlc
Обзор
Документация
Войти
/
githubmirror
/
sqlc
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
examples/booktest/sqlite/schema.sql
20 строк
690 B
Kazuyuki Honda
feat(sqlite) add support sqlc functions (#2274)
06 июн 2023, 19:32
Не верифицирован
06 июн 2023, 19:32
090cb54
Код
Авторство
О чём код?
CREATE TABLE authors ( author_id integer NOT NULL PRIMARY KEY AUTOINCREMENT, name text NOT NULL ); CREATE INDEX authors_name_idx ON authors(name); CREATE TABLE books ( book_id integer NOT NULL PRIMARY KEY AUTOINCREMENT, author_id integer NOT NULL, isbn varchar(255) NOT NULL DEFAULT '' UNIQUE, book_type text NOT NULL DEFAULT 'FICTION', title text NOT NULL, yr integer NOT NULL DEFAULT 2000, available datetime NOT NULL DEFAULT CURRENT_TIMESTAMP, tag text NOT NULL, CHECK (book_type = 'FICTION' OR book_type = 'NONFICTION') ); CREATE INDEX books_title_idx ON books(title, yr);