From 31b04e3aa0ac47592d7d6c4b7cb67c589c6ea2b8 Mon Sep 17 00:00:00 2001 From: Drew Yang Date: Sat, 3 May 2025 13:49:04 -0500 Subject: [PATCH 1/2] chore: yambottle->drewyangdev --- .github/workflows/post_draft_release_published.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/post_draft_release_published.yaml b/.github/workflows/post_draft_release_published.yaml index 3daac2f5..20160e62 100644 --- a/.github/workflows/post_draft_release_published.yaml +++ b/.github/workflows/post_draft_release_published.yaml @@ -132,7 +132,7 @@ jobs: --body "This PR updates \`version.py\` to match the latest release: ${{ github.event.release.name }}" \ --base master \ --head ${{ env.BRANCH_NAME }} \ - --reviewer dimitri-yatsenko,yambottle,ttngu207 + --reviewer dimitri-yatsenko,drewyangdev,ttngu207 - name: Post release notification to Slack if: ${{ env.TEST_PYPI == 'false' }} uses: slackapi/slack-github-action@v2.0.0 From 080bb44bd55cbc49d2af63db0dad313e5429befd Mon Sep 17 00:00:00 2001 From: Drew Yang Date: Sat, 3 May 2025 13:54:20 -0500 Subject: [PATCH 2/2] docs: fix typo --- docs/src/design/tables/indexes.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/src/design/tables/indexes.md b/docs/src/design/tables/indexes.md index 8c0b53f1..fcd1b570 100644 --- a/docs/src/design/tables/indexes.md +++ b/docs/src/design/tables/indexes.md @@ -35,7 +35,7 @@ To make searches faster on fields other than the primary key or a foreign key, y add a secondary index explicitly. Regular indexes are declared as `index(attr1, ..., attrN)` on a separate line anywhere in -the table declration (below the primary key divide). +the table declaration (below the primary key divide). Indexes can be declared with unique constraint as `unique index (attr1, ..., attrN)`.