add status column to the workflow_scripts table (#3450)

This commit is contained in:
Shuchang Zheng
2025-09-17 08:07:32 -07:00
committed by GitHub
parent 9742112449
commit 3bd0f8672b
3 changed files with 54 additions and 1 deletions

View File

@@ -154,3 +154,8 @@ class ScriptBlocksResponse(BaseModel):
class ScriptBlocksRequest(BaseModel):
cache_key_value: str
cache_key: str | None = None
class ScriptStatus(StrEnum):
published = "published"
draft = "draft"