fix 修复:sqlserver数据源,flowable初始化sql脚本字段缺失问题
This commit is contained in:
parent
45d431f24e
commit
5b67b182c3
@ -221,6 +221,7 @@ create table wf_definition_config
|
|||||||
unique,
|
unique,
|
||||||
process_key nvarchar(255) not null,
|
process_key nvarchar(255) not null,
|
||||||
version bigint not null,
|
version bigint not null,
|
||||||
|
remark nvarchar(500) DEFAULT ('') null,
|
||||||
tenant_id nvarchar(20),
|
tenant_id nvarchar(20),
|
||||||
create_dept bigint,
|
create_dept bigint,
|
||||||
create_by bigint,
|
create_by bigint,
|
||||||
@ -252,6 +253,10 @@ exec sp_addextendedproperty 'MS_Description', N'流程版本', 'SCHEMA', 'dbo',
|
|||||||
'version'
|
'version'
|
||||||
go
|
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',
|
exec sp_addextendedproperty 'MS_Description', N'租户编号', 'SCHEMA', 'dbo', 'TABLE', 'wf_definition_config', 'COLUMN',
|
||||||
'tenant_id'
|
'tenant_id'
|
||||||
go
|
go
|
||||||
|
Loading…
x
Reference in New Issue
Block a user