From 137f727655935973bcc206c0fb4f0381bdad9905 Mon Sep 17 00:00:00 2001 From: shiziyuan9527 Date: Wed, 24 Mar 2021 19:26:08 +0800 Subject: [PATCH] =?UTF-8?q?refactor(=E6=B5=8B=E8=AF=95=E8=B7=9F=E8=B8=AA):?= =?UTF-8?q?=20=E8=A1=A5=E5=85=A8=E6=B5=8B=E8=AF=95=E7=94=A8=E4=BE=8B?= =?UTF-8?q?=E5=8E=86=E5=8F=B2=E6=95=B0=E6=8D=AE?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../src/main/resources/db/migration/V78__v1.8_release.sql | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/backend/src/main/resources/db/migration/V78__v1.8_release.sql b/backend/src/main/resources/db/migration/V78__v1.8_release.sql index 31bc6720a4..0773ad9cef 100644 --- a/backend/src/main/resources/db/migration/V78__v1.8_release.sql +++ b/backend/src/main/resources/db/migration/V78__v1.8_release.sql @@ -191,4 +191,7 @@ CREATE TABLE IF NOT EXISTS test_case_test DEFAULT CHARSET = utf8mb4 COMMENT ='测试用例和关联用例的关系表'; alter table test_case - modify test_id varchar(2000) null; \ No newline at end of file + modify test_id varchar(2000) null; + +-- update history data +update test_case set review_status = 'Prepare' where review_status is null; \ No newline at end of file