Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/post_draft_release_published.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion docs/src/design/tables/indexes.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)`.

Expand Down
Loading