/
githubmirror
/
sqlc
Обзор
Документация
Войти
/
githubmirror
/
sqlc
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
internal/endtoend/testdata/unnest_star/postgresql/pgx/schema.sql
13 строк
357 B
Kyle Gray
feat(analyzer): Analyze queries using a running PostgreSQL database (#2805)
12 окт 2023, 20:32
Не верифицирован
12 окт 2023, 20:32
bb84596
Код
Авторство
О чём код?
create table plans ( plan_id bigint generated by default as identity primary key ); create table items ( item_id bigint generated by default as identity primary key ); create table plan_items ( plan_item_id bigint generated by default as identity primary key, plan_id bigint not null REFERENCES plans, item_id bigint not null REFERENCES items );