-
Notifications
You must be signed in to change notification settings - Fork 0
Fix: migrations downgrade config, mapping error, schema paginator not case sensitive #980
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
Changes from all commits
Commits
Show all changes
4 commits
Select commit
Hold shift + click to select a range
4e20551
fix: migrations downgrade config, mapping error, schema paginator not…
milov-dmitriy 90290b8
fix rerun_last_migration
milov-dmitriy 93cc143
add: migration add Dir.name indexes for ilike task_1258
milov-dmitriy fbe3aee
refactor: btree replace on hash
milov-dmitriy File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
48 changes: 48 additions & 0 deletions
48
app/alembic/versions/21a957c18dce_create_directory_name_indexes.py
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,48 @@ | ||
| """Create Directory.name indexes. | ||
|
|
||
| Revision ID: 21a957c18dce | ||
| Revises: 1b71cafba681 | ||
| Create Date: 2026-04-10 11:15:22.133564 | ||
|
|
||
| """ | ||
|
|
||
| import sqlalchemy as sa | ||
| from alembic import op | ||
| from dishka import AsyncContainer | ||
|
|
||
| # revision identifiers, used by Alembic. | ||
| revision: None | str = "21a957c18dce" | ||
| down_revision: None | str = "1b71cafba681" | ||
| branch_labels: None | list[str] = None | ||
| depends_on: None | list[str] = None | ||
|
|
||
|
|
||
| def upgrade(container: AsyncContainer) -> None: # noqa: ARG001 | ||
| """Upgrade.""" | ||
| op.execute("CREATE EXTENSION IF NOT EXISTS pg_trgm") | ||
| op.create_index( | ||
| "idx_Directory_name_hash", | ||
| "Directory", | ||
| ["name"], | ||
| unique=False, | ||
| postgresql_using="hash", | ||
| ) | ||
| op.create_index( | ||
| "idx_Directory_name_gin_trgm", | ||
| "Directory", | ||
| [sa.literal_column("name gin_trgm_ops")], | ||
| unique=False, | ||
| postgresql_using="gin", | ||
|
|
||
| ) | ||
|
|
||
|
|
||
| def downgrade(container: AsyncContainer) -> None: # noqa: ARG001 | ||
| """Downgrade.""" | ||
| op.drop_index( | ||
| "idx_Directory_name_gin_trgm", | ||
| table_name="Directory", | ||
| ) | ||
| op.drop_index( | ||
| "idx_Directory_name_hash", | ||
| table_name="Directory", | ||
| ) | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Submodule interface
updated
from 046449 to 9e7aa8
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.