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 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)`.