12 lines
286 B
SQL
12 lines
286 B
SQL
-- name: ListPublishTargetsOfRole :many
|
|
SELECT * FROM publish_targets WHERE site_id = $1 AND role = 'production';
|
|
|
|
-- name: InsertPublishTarget :one
|
|
INSERT INTO publish_targets (
|
|
site_id,
|
|
role,
|
|
target_type,
|
|
url,
|
|
target_ref
|
|
) VALUES ($1, $2, $3, $4, $5)
|
|
RETURNING id; |