Skip to content

Commit b2b75a7

Browse files
committed
Grammar improvements.
1 parent f3a6562 commit b2b75a7

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

docs/migrations/v1_0/database/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,5 +18,5 @@ Depending on your application's availability requirements, choose one of the fol
1818
## 🏗️ Technical Overview
1919

2020
The v1.0 database migration involves:
21-
1. **Schema Updates**: Adding `protocol_version`, `owner`, and `last_updated` columns to the `tasks` table and `protocol_version`, `owner` columns to the `push_notification_configs` table.
21+
1. **Schema Updates**: Adding the `protocol_version`, `owner`, and `last_updated` columns to the `tasks` table, and the `protocol_version` and `owner` columns to the `push_notification_configs` table.
2222
2. **Storage Model**: Transitioning from Pydantic-based JSON to Protobuf-based JSON serialization for better interoperability and performance.

docs/migrations/v1_0/database/simple_migration.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ uv run a2a-db --database-url "your-database-url"
4040
4141
> [!NOTE]
4242
>
43-
> Database stores v1.0 are designed to be backward compatible by default. After this step, your new v1.0 code will be able to read existing v0.3 entries from the database using a built-in legacy parser.
43+
> The v1.0 database stores are designed to be backward compatible by default. After this step, your new v1.0 code will be able to read existing v0.3 entries from the database using a built-in legacy parser.
4444
4545
### Step 2: Verify the Migration
4646

docs/migrations/v1_0/database/zero_downtime.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ uv run a2a-db --database-url "your-database-url"
4343
> [!NOTE]
4444
> All new columns are nullable. Your existing v0.3 code will continue to work normally after this step is completed.
4545
>
46-
> Database stores v1.0 are designed to be backward compatible by default. After this step, your new v1.0 code will be able to read existing v0.3 entries from the database using a built-in legacy parser.
46+
> The v1.0 database stores are designed to be backward compatible by default. After this step, your new v1.0 code will be able to read existing v0.3 entries from the database using a built-in legacy parser.
4747
4848
#### ✅ How to Verify
4949
Confirm the schema is at the correct version:

0 commit comments

Comments
 (0)