From 3d55d590bf3c253537ed8a60c10947bbb398b8c0 Mon Sep 17 00:00:00 2001 From: yumoqing Date: Wed, 19 Aug 2026 05:53:28 +0800 Subject: [PATCH] =?UTF-8?q?feat:=20PM=E4=BB=BB=E5=8A=A1=E5=88=86=E8=A7=A3?= =?UTF-8?q?=E4=B8=8E=E7=BC=96=E6=8E=92=E2=80=94=E2=80=94=E7=88=B6=E5=AD=90?= =?UTF-8?q?=E5=85=B3=E7=B3=BB(parent=5Fid)+=E4=BE=9D=E8=B5=96=E4=B8=B2?= =?UTF-8?q?=E8=A1=8C(depends=5Fon)+=E4=BB=BB=E5=8A=A1=E6=A0=91=E5=88=86?= =?UTF-8?q?=E5=B1=82?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- scripts/create_tables.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/scripts/create_tables.py b/scripts/create_tables.py index 0d7b0e8..4dfbd76 100644 --- a/scripts/create_tables.py +++ b/scripts/create_tables.py @@ -121,7 +121,8 @@ CREATE TABLE IF NOT EXISTS sd_work_envs ( _V2_COLUMNS = { "pipelines": {"agent_config": "text"}, "sd_org_settings": {"agent_config": "text"}, - "pipeline_tasks": {"retry_count": "int NOT NULL DEFAULT 0", "last_error": "text"}, + "pipeline_tasks": {"retry_count": "int NOT NULL DEFAULT 0", "last_error": "text", + "parent_id": "varchar(32) NULL", "depends_on": "text NULL"}, } # app_audit 审计日志表(原 app_audit/init.py::_init_audit 启动时建,现迁到部署期)