update 移除流程表单 formConfig 属性,表单配置信息都放一起便于使用。

This commit is contained in:
konbai 2023-07-19 23:50:17 +08:00
parent 421952d05d
commit 8b1c89da37
5 changed files with 0 additions and 17 deletions

View File

@ -32,11 +32,6 @@ public class WfForm extends TenantEntity {
*/
private String formName;
/**
* 表单配置
*/
private String formConfig;
/**
* 表单内容
*/

View File

@ -1112,7 +1112,6 @@ insert into sys_oss_config values (5, '000000', 'image', 'ruoyi', 'r
create table wf_form (
form_id number(20) not null,
form_name varchar(64) default '',
form_config nclob,
content nclob,
create_dept number(20) default null,
create_by number(20) default null,
@ -1128,7 +1127,6 @@ alter table wf_form add constraint pk_wf_form primary key (form_id);
comment on table wf_form is '流程表单信息表';
comment on column wf_form.form_id is '表单主键';
comment on column wf_form.form_name is '表单名称';
comment on column wf_form.form_config is '表单配置';
comment on column wf_form.content is '表单内容';
comment on column wf_form.create_dept is '创建部门';
comment on column wf_form.create_by is '创建者';

View File

@ -1139,7 +1139,6 @@ create table if not exists bpmn_form
form_id int8,
tenant_id varchar(20) default '000000'::varchar,
form_name varchar(255) default ''::varchar not null,
form_config text,
content text,
create_dept int8,
create_by int8,
@ -1153,7 +1152,6 @@ create table if not exists bpmn_form
comment on table wf_form is '流程表单信息表';
comment on column bpmn_form.form_id is '表单主键';
comment on column bpmn_form.form_name is '表单名称';
comment on column bpmn_form.form_config is '表单配置';
comment on column bpmn_form.content is '表单内容';
comment on column bpmn_form.create_dept is '创建部门';
comment on column bpmn_form.create_by is '创建者';

View File

@ -826,7 +826,6 @@ create table wf_form (
form_id bigint not null comment '表单id',
tenant_id varchar(20) default '000000'comment '租户编号',
form_name varchar(255) default null comment '表单名称',
form_config longtext comment '表单配置',
content longtext comment '表单内容',
create_dept bigint default null comment '创建部门',
create_by bigint default null comment '创建者',

View File

@ -2817,7 +2817,6 @@ CREATE TABLE wf_form
(
form_id bigint NOT NULL,
form_name nvarchar(64) DEFAULT '' NULL,
form_config nvarchar(max) NULL,
content nvarchar(max) NULL,
create_dept bigint NULL,
create_by nvarchar(64) DEFAULT '' NULL,
@ -2844,12 +2843,6 @@ EXEC sp_addextendedproperty
'TABLE', N'wf_form',
'COLUMN', N'form_name'
GO
EXEC sp_addextendedproperty
'MS_Description', N'表单配置',
'SCHEMA', N'dbo',
'TABLE', N'wf_form',
'COLUMN', N'form_config'
GO
EXEC sp_addextendedproperty
'MS_Description', N'表单内容',
'SCHEMA', N'dbo',