2026-02-19 10:21:27 +00:00
|
|
|
-- name: SelectPublishTargetsOfSite :many
|
|
|
|
|
SELECT * FROM publish_targets WHERE site_id = ?;
|
|
|
|
|
|
|
|
|
|
-- name: InsertPublishTarget :one
|
|
|
|
|
INSERT INTO publish_targets (
|
|
|
|
|
site_id,
|
2026-02-19 11:29:44 +00:00
|
|
|
target_type,
|
2026-02-21 23:09:34 +00:00
|
|
|
enabled,
|
2026-02-19 10:21:27 +00:00
|
|
|
base_url,
|
2026-02-19 11:29:44 +00:00
|
|
|
target_ref,
|
|
|
|
|
target_key
|
2026-02-21 23:09:34 +00:00
|
|
|
) VALUES (?, ?, ?, ?, ?, ?)
|
2026-02-19 10:21:27 +00:00
|
|
|
RETURNING id;
|