fix(数据库脚本): 修复数据库脚本文件语法错误问题以及将 wf_deploy_form.node_key 设不为null

This commit is contained in:
konbai
2022-08-09 13:38:48 +08:00
parent 5fa93221b8
commit 94dc95a558
4 changed files with 5 additions and 5 deletions

View File

@@ -2654,7 +2654,7 @@ CREATE TABLE [wf_deploy_form]
(
[deploy_id] nvarchar(64) NOT NULL,
[form_key] nvarchar(64) NOT NULL,
[node_key] nvarchar(64) DEFAULT '' NULL,
[node_key] nvarchar(64) NOT NULL,
[node_name] nvarchar(64) DEFAULT '' NULL,
[content] nvarchar(max) NULL,
CONSTRAINT [PK__wf_deploy_form] PRIMARY KEY CLUSTERED ([deploy_id], [form_key], [node_key])