证书部署可选择跳过重复部署

This commit is contained in:
zhangchenhao
2025-05-14 19:59:53 +08:00
parent d333c7a9af
commit b9abdb0f72
3 changed files with 78 additions and 6 deletions

View File

@@ -185,14 +185,14 @@ func init() {
workflow_id TEXT not null
);
create table IF NOT EXISTS workflow_deploy
create table workflow_deploy
(
id TEXT
constraint workflow_deploy_pk
primary key,
id TEXT,
workflow_id TEXT,
cert_hash TEXT,
status TEXT
status TEXT,
constraint workflow_deploy_pk
primary key (id, workflow_id)
);
`)