Skip to content

Commit

Permalink
created_at index for steps table (Skyvern-AI#1301)
Browse files Browse the repository at this point in the history
  • Loading branch information
wintonzheng authored Dec 2, 2024
1 parent 76f1712 commit 04d5685
Show file tree
Hide file tree
Showing 2 changed files with 33 additions and 1 deletion.
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
"""steps DB change: add created_at index
Revision ID: db41106b9f1a
Revises: a5feab7712fe
Create Date: 2024-12-02 16:09:57.679626+00:00
"""

from typing import Sequence, Union

from alembic import op

# revision identifiers, used by Alembic.
revision: str = "db41106b9f1a"
down_revision: Union[str, None] = "a5feab7712fe"
branch_labels: Union[str, Sequence[str], None] = None
depends_on: Union[str, Sequence[str], None] = None


def upgrade() -> None:
# ### commands auto generated by Alembic - please adjust! ###
op.create_index("created_at_org_index", "steps", ["created_at", "organization_id"], unique=False)
# ### end Alembic commands ###


def downgrade() -> None:
# ### commands auto generated by Alembic - please adjust! ###
op.drop_index("created_at_org_index", table_name="steps")
# ### end Alembic commands ###
5 changes: 4 additions & 1 deletion skyvern/forge/sdk/db/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,10 @@ class TaskModel(Base):

class StepModel(Base):
__tablename__ = "steps"
__table_args__ = (Index("org_task_index", "organization_id", "task_id"),)
__table_args__ = (
Index("org_task_index", "organization_id", "task_id"),
Index("created_at_org_index", "created_at", "organization_id"),
)

step_id = Column(String, primary_key=True, index=True, default=generate_step_id)
organization_id = Column(String, ForeignKey("organizations.organization_id"))
Expand Down

0 comments on commit 04d5685

Please sign in to comment.