Skip to content

chore: yambottle->drewyangdev #1236

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
May 19, 2025
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