Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion flyctl/cmd/fly_mpg.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
7 changes: 4 additions & 3 deletions flyctl/cmd/fly_mpg_restore.md
Original file line number Diff line number Diff line change
@@ -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'.

Expand All @@ -15,6 +15,7 @@ fly mpg restore <CLUSTER_ID> [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
Expand Down
Loading