/
githubmirror
/
sqlc
Обзор
Документация
Войти
/
githubmirror
/
sqlc
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
internal/endtoend/testdata/insert_cte/stdlib/schema.sql
30 строк
783 B
Kyle Gray
test(endtoend): Split shema and queries (#2803)
04 окт 2023, 19:13
Не верифицирован
04 окт 2023, 19:13
5664224
Код
Авторство
О чём код?
-- FILE: schema.sql DROP SCHEMA IF EXISTS td3 CASCADE; CREATE SCHEMA td3; CREATE TABLE td3.codes ( id SERIAL PRIMARY KEY, ts_created timestamptz DEFAULT now() NOT NULL, ts_updated timestamptz DEFAULT now() NOT NULL, created_by text NOT NULL, updated_by text NOT NULL, code text, hash text, is_private boolean ); CREATE TABLE td3.test_codes ( id SERIAL PRIMARY KEY, ts_created timestamptz DEFAULT now() NOT NULL, ts_updated timestamptz DEFAULT now() NOT NULL, created_by text NOT NULL, updated_by text NOT NULL, test_id integer NOT NULL, code_hash text NOT NULL ); -- FILE: query.sql