From 4e2b49a6e36f1f93b6832d777eff86c4522970fb Mon Sep 17 00:00:00 2001 From: fit2-zhao Date: Fri, 24 May 2024 18:32:12 +0800 Subject: [PATCH] =?UTF-8?q?chore:=20ddl=E4=BD=8D=E7=BD=AE=E4=BF=AE?= =?UTF-8?q?=E6=94=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../migration/3.0.0/ddl/V3.0.0_12__beta_ddl.sql | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/backend/framework/domain/src/main/resources/migration/3.0.0/ddl/V3.0.0_12__beta_ddl.sql b/backend/framework/domain/src/main/resources/migration/3.0.0/ddl/V3.0.0_12__beta_ddl.sql index 244c29ed61..9a1b1cfc6c 100644 --- a/backend/framework/domain/src/main/resources/migration/3.0.0/ddl/V3.0.0_12__beta_ddl.sql +++ b/backend/framework/domain/src/main/resources/migration/3.0.0/ddl/V3.0.0_12__beta_ddl.sql @@ -178,9 +178,6 @@ CREATE INDEX idx_source_id ON operation_history(`source_id`); -- 修改缺陷自定义字段值长度(由于要支持三方平台富文本存储) ALTER TABLE bug_custom_field MODIFY `value` longtext; --- set innodb lock wait timeout to default -SET SESSION innodb_lock_wait_timeout = DEFAULT; - -- 场景报告步骤结果内容 CREATE TABLE IF NOT EXISTS api_scenario_report_detail_blob( `id` VARCHAR(50) NOT NULL COMMENT 'ID' , @@ -200,3 +197,9 @@ SELECT id, report_id, content FROM api_scenario_report_detail; -- 删除原有的内容字段 ALTER TABLE api_scenario_report_detail DROP COLUMN content; + +-- set innodb lock wait timeout to default +SET SESSION innodb_lock_wait_timeout = DEFAULT; + + +