Skip to content
Open
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
45 changes: 45 additions & 0 deletions cloud_docs/reference/cli/_generated/db.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,10 @@ Available subcommands:
Danger Zone
wipe Irreversibly wipe and recreate the database, deleting all data and schema changes.

Service
backup Manage database backup snapshots.
schedule Manage the automated database backup schedule.

Run "scloud help" to see global options.

See the full documentation at: https://docs.serverpod.dev/cloud/reference/cli/commands/db
Expand Down Expand Up @@ -56,6 +60,47 @@ See the full documentation at: https://docs.serverpod.dev/cloud/reference/cli/co

```

#### `backup`

```console
Manage database backup snapshots.

Usage: scloud db backup <subcommand> [arguments]
-h, --help Print this usage information.

Available subcommands:
create Create a manual database backup snapshot.
list List the database backup snapshots.

Danger Zone
delete Delete a database backup snapshot.
restore Restore the live database to a backup snapshot.

Run "scloud help" to see global options.

See the full documentation at: https://docs.serverpod.dev/cloud/reference/cli/commands/db

```

#### `schedule`

```console
Manage the automated database backup schedule.

Usage: scloud db schedule <subcommand> [arguments]
-h, --help Print this usage information.

Available subcommands:
set Set (create or update) the automated backup schedule.
show Show the automated backup schedule.
unset Unset (disable) the automated backup schedule.

Run "scloud help" to see global options.

See the full documentation at: https://docs.serverpod.dev/cloud/reference/cli/commands/db

```

#### `wipe`

```console
Expand Down
Loading