From 9ddbe6515e48ad845c0d7c47172dfebc0b146ee5 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Tue, 17 Dec 2024 21:22:00 +0000 Subject: [PATCH] chore: format content markdown files with Prettier --- content/docs/guides/schema-diff.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/content/docs/guides/schema-diff.md b/content/docs/guides/schema-diff.md index 0896edcd36..3966ff7465 100644 --- a/content/docs/guides/schema-diff.md +++ b/content/docs/guides/schema-diff.md @@ -107,13 +107,13 @@ url -X GET \ -H "Authorization: Bearer $NEON_API_KEY" | jq -r '.diff' ``` -| Parameter | Description | Required | Example | -|------------------|--------------------------------------------|----------|----------------------------| -| `` | The ID of your Neon project. | Yes | `wispy-butterfly-25042691` | -| `` | The ID of the target branch to compare. | Yes | `br-rough-boat-a54bs9yb` | -| `base_branch_id` | The ID of the base branch for comparison. | Yes | `br-royal-star-a54kykl2` | +| Parameter | Description | Required | Example | +| ---------------- | ---------------------------------------------- | -------- | -------------------------- | +| `` | The ID of your Neon project. | Yes | `wispy-butterfly-25042691` | +| `` | The ID of the target branch to compare. | Yes | `br-rough-boat-a54bs9yb` | +| `base_branch_id` | The ID of the base branch for comparison. | Yes | `br-royal-star-a54kykl2` | | `db_name` | The name of the database in the target branch. | Yes | `neondb` | -| `Authorization` | Bearer token for API access. | Yes | `$NEON_API_KEY` | +| `Authorization` | Bearer token for API access. | Yes | `$NEON_API_KEY` | The `jq -r '.diff'` command extracts the diff field from the JSON response and outputs it as plain text to make it easier to read.