mirror of
https://github.com/eduardolat/pgbackweb.git
synced 2026-02-10 22:28:26 -06:00
9 lines
145 B
SQL
9 lines
145 B
SQL
-- name: BackupsServiceGetScheduleAllData :many
|
|
SELECT
|
|
id,
|
|
is_active,
|
|
cron_expression,
|
|
time_zone
|
|
FROM backups
|
|
ORDER BY created_at DESC;
|