add webhook failure reason (#3046)
This commit is contained in:
@@ -65,6 +65,7 @@ class TaskModel(Base):
|
||||
browser_session_id = Column(String, nullable=True, index=True)
|
||||
status = Column(String, index=True)
|
||||
webhook_callback_url = Column(String)
|
||||
webhook_failure_reason = Column(String, nullable=True)
|
||||
totp_verification_url = Column(String)
|
||||
totp_identifier = Column(String)
|
||||
title = Column(String)
|
||||
@@ -263,6 +264,7 @@ class WorkflowRunModel(Base):
|
||||
failure_reason = Column(String)
|
||||
proxy_location = Column(String)
|
||||
webhook_callback_url = Column(String)
|
||||
webhook_failure_reason = Column(String, nullable=True)
|
||||
totp_verification_url = Column(String)
|
||||
totp_identifier = Column(String)
|
||||
max_screenshot_scrolling_times = Column(Integer, nullable=True)
|
||||
@@ -639,6 +641,7 @@ class TaskV2Model(Base):
|
||||
summary = Column(String, nullable=True)
|
||||
output = Column(JSON, nullable=True)
|
||||
webhook_callback_url = Column(String, nullable=True)
|
||||
webhook_failure_reason = Column(String, nullable=True)
|
||||
totp_verification_url = Column(String, nullable=True)
|
||||
totp_identifier = Column(String, nullable=True)
|
||||
proxy_location = Column(String, nullable=True)
|
||||
|
||||
Reference in New Issue
Block a user