diff --git a/backend/framework/domain/src/main/resources/migration/3.5.0/ddl/V3.5.0_2__ga_ddl.sql b/backend/framework/domain/src/main/resources/migration/3.5.0/ddl/V3.5.0_2__ga_ddl.sql index db93ff78d9..286f3d4ef8 100644 --- a/backend/framework/domain/src/main/resources/migration/3.5.0/ddl/V3.5.0_2__ga_ddl.sql +++ b/backend/framework/domain/src/main/resources/migration/3.5.0/ddl/V3.5.0_2__ga_ddl.sql @@ -2,7 +2,7 @@ SET SESSION innodb_lock_wait_timeout = 7200; -- 缺陷自定义字段增加文本字段 -ALTER TABLE bug_custom_field ADD COLUMN `content` VARCHAR(1000) COMMENT '字段文本'; +ALTER TABLE bug_custom_field ADD COLUMN `content` longtext COMMENT '字段文本'; CREATE TABLE IF NOT EXISTS user_layout( diff --git a/frontend/src/views/workbench/components/bugTable.vue b/frontend/src/views/workbench/components/bugTable.vue index dbaa4a3f26..fea7fe3983 100644 --- a/frontend/src/views/workbench/components/bugTable.vue +++ b/frontend/src/views/workbench/components/bugTable.vue @@ -101,6 +101,16 @@ }, showInTable: true, }, + { + title: 'bugManagement.handleMan', + dataIndex: 'handleUser', + slotName: 'handleUser', + titleSlotName: 'handleUserTitle', + showTooltip: true, + width: 125, + showDrag: true, + showInTable: true, + }, { title: 'bugManagement.creator', dataIndex: 'createUser', @@ -125,16 +135,6 @@ }, showInTable: true, }, - { - title: 'bugManagement.handleMan', - dataIndex: 'handleUser', - slotName: 'handleUser', - titleSlotName: 'handleUserTitle', - showTooltip: true, - width: 125, - showDrag: true, - showInTable: true, - }, { title: 'bugManagement.updateUser', dataIndex: 'updateUser',