diff --git a/docs/reference/deploy-request.md b/docs/reference/deploy-request.md index 7d8deda2..fd32a8e9 100644 --- a/docs/reference/deploy-request.md +++ b/docs/reference/deploy-request.md @@ -32,7 +32,7 @@ Your database must have a production branch with [safe migrations](/docs/concept | `cancel ` | | Cancel a deploy request. | | `close ` | | Close the specified deploy request. | | `create ` | `--into `, `--notes ` | Create a new deploy request. | -| `deploy ` | | Deploy the specified deploy request. | +| `deploy ` | `--instant` | Deploy the specified deploy request. | | `diff ` | `--web` | Show the diff of the specified deploy request. | | `edit ` | `--auto-apply string` Possible values: enable, disable (default: "enable") | Edit a deploy request. | | `list ` | `--web` | List all deploy requests for a database. | @@ -51,13 +51,14 @@ You can also find the number in the PlanetScale dashboard in the URL of the spec Some of the sub-commands have additional flags unique to the sub-command. This section covers what each of those does. See the above table for which context. -| Sub-command flag | Description | Applicable sub-commands | -| ---------------------- | ------------------------------------------------------------------------------------ | ----------------------- | -| `--into ` | Specify that the new deploy request deploy to a specified branch. Default is `main`. | `create` | -| `--notes ` | A note describing the deploy request. Acts as the first comment. | `create` | -| `--web` | Perform the action in your web browser | `diff`, `list`, `show` | -| `--approve` | Approve a deploy request | `review` | -| `--comment ` | Leave a comment on a deploy request | `review` | +| Sub-command flag | Description | Applicable sub-commands | +| ---------------------- | --------------------------------------------------------------------------------------------------------------------------- | ----------------------- | +| `--into ` | Specify that the new deploy request deploy to a specified branch. Default is `main`. | `create` | +| `--notes ` | A note describing the deploy request. Acts as the first comment. | `create` | +| `--web` | Perform the action in your web browser | `diff`, `list`, `show` | +| `--approve` | Approve a deploy request | `review` | +| `--comment ` | Leave a comment on a deploy request | `review` | +| `--instant` | Deploy a deploy request using MySQL’s built-in ALGORITHM=INSTANT option. Deployment will be faster, but cannot be reverted. | `deploy` | ### Available flags