hugo-cms/sql/queries/sites.sql

15 lines
251 B
MySQL
Raw Normal View History

-- name: ListSites :one
SELECT * FROM site;
2025-01-26 23:19:31 +00:00
-- name: GetSiteWithID :one
SELECT * FROM site WHERE id = $1 LIMIT 1;
-- name: NewSite :one
INSERT INTO site (
name,
2025-01-26 22:26:15 +00:00
title,
url,
theme,
props
2025-01-26 22:26:15 +00:00
) VALUES ($1, $2, $3, $4, $5)
RETURNING id;