hugo-cms/sql/queries/targets.sql

12 lines
284 B
MySQL
Raw Normal View History

2025-01-27 04:45:53 +00:00
-- name: ListPublishTargetsOfRole :many
SELECT * FROM publish_target WHERE site_id = $1 AND role = 'production';
-- name: InsertPublishTarget :one
INSERT INTO publish_target (
site_id,
role,
target_type,
url,
target_ref
) VALUES ($1, $2, $3, $4, $5)
RETURNING id;