/
Arsinenko
/
CompClubAPI_Go
Обзор
Документация
Войти
/
Arsinenko
/
CompClubAPI_Go
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
CI/CD
Аналитика
Безопасность
main
sqlc/queries/workings_spaces.sql
18 строк
442 B
Arsinenko
Working space update
17 ноя 2025, 17:41
17 ноя 2025, 17:41
d647065
Код
Авторство
О чём код?
-- name: CreateWorkingSpace :one insert into working_spaces (club, tariff) values ($1, $2) returning *; -- name: UpdateWorkingSpaceTariff :one update working_spaces set tariff = $2 where id = $1 returning *; -- name: UpdateStatus :one update working_spaces set enabled = $2 where id = $1 returning *; -- name: GetWorkingSpaces :many select * from working_spaces; -- name: GetWorkingSpace :one select * from working_spaces where id = $1;