Sfoglia il codice sorgente

!539 解决sqlserver对应flowable脚本缺少字段问题
Merge pull request !539 from ZorA/sqlserver

疯狂的狮子Li 1 anno fa
parent
commit
831aec3af9
1 ha cambiato i file con 5 aggiunte e 0 eliminazioni
  1. 5 0
      script/sql/sqlserver/flowable.sql

+ 5 - 0
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