mirror of
https://github.com/eduardolat/pgbackweb.git
synced 2026-01-23 21:19:31 -06:00
7 lines
185 B
SQL
7 lines
185 B
SQL
-- name: DatabasesServiceGetAllDatabases :many
|
|
SELECT
|
|
*,
|
|
pgp_sym_decrypt(connection_string, @encryption_key) AS decrypted_connection_string
|
|
FROM databases
|
|
ORDER BY created_at DESC;
|