mirror of
https://github.com/eduardolat/pgbackweb.git
synced 2026-01-24 05:28:36 -06:00
5 lines
164 B
SQL
5 lines
164 B
SQL
-- name: ExecutionsServiceCreateExecution :one
|
|
INSERT INTO executions (backup_id, status, message, path)
|
|
VALUES (@backup_id, @status, @message, @path)
|
|
RETURNING *;
|