Skip to content

Commit

Permalink
Revert "get proxy_location enum back in the tasks table" (#1737)
Browse files Browse the repository at this point in the history
  • Loading branch information
wintonzheng authored Feb 6, 2025
1 parent 68e0e73 commit 9f14224
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 79 deletions.

This file was deleted.

3 changes: 1 addition & 2 deletions skyvern/forge/sdk/db/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,6 @@
generate_workflow_run_id,
)
from skyvern.forge.sdk.schemas.observers import ObserverThoughtType
from skyvern.forge.sdk.schemas.tasks import ProxyLocation


class Base(AsyncAttrs, DeclarativeBase):
Expand All @@ -70,7 +69,7 @@ class TaskModel(Base):
navigation_payload = Column(JSON)
extracted_information = Column(JSON)
failure_reason = Column(String)
proxy_location = Column(Enum(ProxyLocation))
proxy_location = Column(String)
extracted_information_schema = Column(JSON)
workflow_run_id = Column(String, ForeignKey("workflow_runs.workflow_run_id"), index=True)
order = Column(Integer, nullable=True)
Expand Down

0 comments on commit 9f14224

Please sign in to comment.