From 5b67b182c380f16eed55f03dd630a51982b081cc Mon Sep 17 00:00:00 2001 From: ZorA Date: Wed, 22 May 2024 16:37:00 +0800 Subject: [PATCH] =?UTF-8?q?fix=20=E4=BF=AE=E5=A4=8D=EF=BC=9Asqlserver?= =?UTF-8?q?=E6=95=B0=E6=8D=AE=E6=BA=90=EF=BC=8Cflowable=E5=88=9D=E5=A7=8B?= =?UTF-8?q?=E5=8C=96sql=E8=84=9A=E6=9C=AC=E5=AD=97=E6=AE=B5=E7=BC=BA?= =?UTF-8?q?=E5=A4=B1=E9=97=AE=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- script/sql/sqlserver/flowable.sql | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/script/sql/sqlserver/flowable.sql b/script/sql/sqlserver/flowable.sql index 11ee2be97..519e8d78a 100644 --- a/script/sql/sqlserver/flowable.sql +++ b/script/sql/sqlserver/flowable.sql @@ -221,6 +221,7 @@ create table wf_definition_config unique, process_key nvarchar(255) not null, version bigint not null, + remark nvarchar(500) DEFAULT ('') null, tenant_id nvarchar(20), create_dept bigint, create_by bigint, @@ -252,6 +253,10 @@ exec sp_addextendedproperty 'MS_Description', N'流程版本', 'SCHEMA', 'dbo', 'version' go +exec sp_addextendedproperty 'MS_Description', N'备注', 'SCHEMA', 'dbo', 'TABLE', 'wf_definition_config', 'COLUMN', + 'remark' +go + exec sp_addextendedproperty 'MS_Description', N'租户编号', 'SCHEMA', 'dbo', 'TABLE', 'wf_definition_config', 'COLUMN', 'tenant_id' go