mirror of
https://github.com/eduardolat/pgbackweb.git
synced 2026-02-10 22:28:26 -06:00
8 lines
151 B
SQL
8 lines
151 B
SQL
-- name: DatabasesServiceUpdateDatabase :one
|
|
UPDATE databases
|
|
SET
|
|
name = @name,
|
|
connection_string = @connection_string
|
|
WHERE id = @id
|
|
RETURNING *;
|