diff --git a/flyctl/cmd/fly_mpg.md b/flyctl/cmd/fly_mpg.md index 31f4a9bcf1..72f9d16374 100644 --- a/flyctl/cmd/fly_mpg.md +++ b/flyctl/cmd/fly_mpg.md @@ -16,7 +16,7 @@ fly mpg [command] [flags] * [detach](/docs/flyctl/mpg-detach/) - Detach a managed Postgres cluster from an app * [list](/docs/flyctl/mpg-list/) - List MPG clusters. * [proxy](/docs/flyctl/mpg-proxy/) - Proxy to a MPG database -* [restore](/docs/flyctl/mpg-restore/) - Restore MPG cluster from backup into a new cluster. +* [restore](/docs/flyctl/mpg-restore/) - Restore MPG cluster from a backup or a point in time into a new cluster. * [status](/docs/flyctl/mpg-status/) - Show MPG cluster status. * [users](/docs/flyctl/mpg-users/) - Manage users in a managed postgres cluster diff --git a/flyctl/cmd/fly_mpg_restore.md b/flyctl/cmd/fly_mpg_restore.md index 17a911a2f7..81cf7a483e 100644 --- a/flyctl/cmd/fly_mpg_restore.md +++ b/flyctl/cmd/fly_mpg_restore.md @@ -1,6 +1,6 @@ -Restore a Managed Postgres backup into a new cluster, leaving the source -cluster unchanged. The restored cluster is provisioned asynchronously in the -same organization and billed separately. +Restore a Managed Postgres cluster from a backup or a point in time into a +new cluster, leaving the source cluster unchanged. The restored cluster is +provisioned asynchronously in the same organization and billed separately. Find backup IDs with 'fly mpg backup list'. @@ -15,6 +15,7 @@ fly mpg restore [flags] --backup-id string The backup ID to restore from -h, --help help for restore -n, --name string The name of the restored cluster (defaults to a generated name) + --pitr-time string Restore to a specific point in time (RFC3339, e.g. 2026-06-01T12:00:00Z). Requires the cluster's PITR recovery window to cover this time. Mutually exclusive with --backup-id. ~~~ ## Global Options