-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Showing
284 changed files
with
12,972 additions
and
21,297 deletions.
There are no files selected for viewing
This file contains 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 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 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 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
71 changes: 71 additions & 0 deletions
71
alembic/versions/1f5db5dfad80_add_indexes_to_study_tables.py
This file contains 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,71 @@ | ||
# noinspection SpellCheckingInspection | ||
""" | ||
Add indexes to Study tables | ||
The goal of this migration is to add indexes on the `study`, `rawstudy` and `study_additional_data` tables, | ||
in order to speed up data search queries for the search engine. | ||
Revision ID: 1f5db5dfad80 | ||
Revises: 782a481f3414 | ||
Create Date: 2024-01-19 18:37:34.155199 | ||
""" | ||
from alembic import op | ||
import sqlalchemy as sa # type: ignore | ||
|
||
|
||
# revision identifiers, used by Alembic. | ||
# noinspection SpellCheckingInspection | ||
revision = "1f5db5dfad80" | ||
down_revision = "782a481f3414" | ||
branch_labels = None | ||
depends_on = None | ||
|
||
|
||
# noinspection SpellCheckingInspection | ||
def upgrade() -> None: | ||
# ### commands auto generated by Alembic - please adjust! ### | ||
with op.batch_alter_table("rawstudy", schema=None) as batch_op: | ||
batch_op.alter_column("workspace", existing_type=sa.VARCHAR(length=255), nullable=False) | ||
batch_op.create_index(batch_op.f("ix_rawstudy_missing"), ["missing"], unique=False) | ||
batch_op.create_index(batch_op.f("ix_rawstudy_workspace"), ["workspace"], unique=False) | ||
|
||
with op.batch_alter_table("study", schema=None) as batch_op: | ||
batch_op.create_index(batch_op.f("ix_study_archived"), ["archived"], unique=False) | ||
batch_op.create_index(batch_op.f("ix_study_created_at"), ["created_at"], unique=False) | ||
batch_op.create_index(batch_op.f("ix_study_folder"), ["folder"], unique=False) | ||
batch_op.create_index(batch_op.f("ix_study_name"), ["name"], unique=False) | ||
batch_op.create_index(batch_op.f("ix_study_owner_id"), ["owner_id"], unique=False) | ||
batch_op.create_index(batch_op.f("ix_study_parent_id"), ["parent_id"], unique=False) | ||
batch_op.create_index(batch_op.f("ix_study_type"), ["type"], unique=False) | ||
batch_op.create_index(batch_op.f("ix_study_updated_at"), ["updated_at"], unique=False) | ||
batch_op.create_index(batch_op.f("ix_study_version"), ["version"], unique=False) | ||
|
||
with op.batch_alter_table("study_additional_data", schema=None) as batch_op: | ||
batch_op.create_index(batch_op.f("ix_study_additional_data_patch"), ["patch"], unique=False) | ||
|
||
# ### end Alembic commands ### | ||
|
||
|
||
# noinspection SpellCheckingInspection | ||
def downgrade() -> None: | ||
# ### commands auto generated by Alembic - please adjust! ### | ||
with op.batch_alter_table("study_additional_data", schema=None) as batch_op: | ||
batch_op.drop_index(batch_op.f("ix_study_additional_data_patch")) | ||
|
||
with op.batch_alter_table("study", schema=None) as batch_op: | ||
batch_op.drop_index(batch_op.f("ix_study_version")) | ||
batch_op.drop_index(batch_op.f("ix_study_updated_at")) | ||
batch_op.drop_index(batch_op.f("ix_study_type")) | ||
batch_op.drop_index(batch_op.f("ix_study_parent_id")) | ||
batch_op.drop_index(batch_op.f("ix_study_owner_id")) | ||
batch_op.drop_index(batch_op.f("ix_study_name")) | ||
batch_op.drop_index(batch_op.f("ix_study_folder")) | ||
batch_op.drop_index(batch_op.f("ix_study_created_at")) | ||
batch_op.drop_index(batch_op.f("ix_study_archived")) | ||
|
||
with op.batch_alter_table("rawstudy", schema=None) as batch_op: | ||
batch_op.drop_index(batch_op.f("ix_rawstudy_workspace")) | ||
batch_op.drop_index(batch_op.f("ix_rawstudy_missing")) | ||
batch_op.alter_column("workspace", existing_type=sa.VARCHAR(length=255), nullable=True) | ||
|
||
# ### end Alembic commands ### |
58 changes: 58 additions & 0 deletions
58
alembic/versions/3c70366b10ea_add_tag_and_study_tag_tables.py
This file contains 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,58 @@ | ||
"""Add tag and study_tag tables | ||
Revision ID: 3c70366b10ea | ||
Revises: 1f5db5dfad80 | ||
Create Date: 2024-02-02 13:06:47.627554 | ||
""" | ||
from alembic import op | ||
import sqlalchemy as sa | ||
|
||
|
||
# revision identifiers, used by Alembic. | ||
revision = "3c70366b10ea" | ||
down_revision = "1f5db5dfad80" | ||
branch_labels = None | ||
depends_on = None | ||
|
||
|
||
def upgrade(): | ||
# ### commands auto generated by Alembic - please adjust! ### | ||
op.create_table( | ||
"tag", | ||
sa.Column("label", sa.String(length=40), nullable=False), | ||
sa.Column("color", sa.String(length=20), nullable=True), | ||
sa.PrimaryKeyConstraint("label"), | ||
) | ||
with op.batch_alter_table("tag", schema=None) as batch_op: | ||
batch_op.create_index(batch_op.f("ix_tag_color"), ["color"], unique=False) | ||
batch_op.create_index(batch_op.f("ix_tag_label"), ["label"], unique=False) | ||
|
||
op.create_table( | ||
"study_tag", | ||
sa.Column("study_id", sa.String(length=36), nullable=False), | ||
sa.Column("tag_label", sa.String(length=40), nullable=False), | ||
sa.ForeignKeyConstraint(["study_id"], ["study.id"], ondelete="CASCADE"), | ||
sa.ForeignKeyConstraint(["tag_label"], ["tag.label"], ondelete="CASCADE"), | ||
sa.PrimaryKeyConstraint("study_id", "tag_label"), | ||
) | ||
with op.batch_alter_table("study_tag", schema=None) as batch_op: | ||
batch_op.create_index(batch_op.f("ix_study_tag_study_id"), ["study_id"], unique=False) | ||
batch_op.create_index(batch_op.f("ix_study_tag_tag_label"), ["tag_label"], unique=False) | ||
|
||
# ### end Alembic commands ### | ||
|
||
|
||
def downgrade(): | ||
# ### commands auto generated by Alembic - please adjust! ### | ||
with op.batch_alter_table("study_tag", schema=None) as batch_op: | ||
batch_op.drop_index(batch_op.f("ix_study_tag_tag_label")) | ||
batch_op.drop_index(batch_op.f("ix_study_tag_study_id")) | ||
|
||
op.drop_table("study_tag") | ||
with op.batch_alter_table("tag", schema=None) as batch_op: | ||
batch_op.drop_index(batch_op.f("ix_tag_label")) | ||
batch_op.drop_index(batch_op.f("ix_tag_color")) | ||
|
||
op.drop_table("tag") | ||
# ### end Alembic commands ### |
This file contains 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 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 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 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 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 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.